Debian build fixes
This commit is contained in:
parent
6d54f3c826
commit
db41f2a83a
|
@ -1,3 +1,8 @@
|
|||
mt-daapd (0.9-@ver@) unstable; urgency=low
|
||||
* Nightly build
|
||||
|
||||
-- Ron Pedde <ron@pedde.com> Wed, 11 Oct 2006 21:02:00 -0600
|
||||
|
||||
mt-daapd (0.2.1.1-1) unstable; urgency=low
|
||||
* Trivial fixes for stupid bugs
|
||||
|
|
@ -2,7 +2,7 @@ Source: mt-daapd
|
|||
Section: sound
|
||||
Priority: optional
|
||||
Maintainer: Aubin Paul <debian@outlyer.org>
|
||||
Build-Depends: debhelper (>= 4.0.0), libid3tag0-dev, zlib1g-dev, libgdbm-dev
|
||||
Build-Depends: debhelper (>= 4.0.0), libid3tag0-dev, zlib1g-dev, libgdbm-dev, libsqlite0-dev
|
||||
Standards-Version: 3.6.0
|
||||
|
||||
Package: mt-daapd
|
||||
|
|
|
@ -3,4 +3,4 @@ NEWS
|
|||
README
|
||||
TODO
|
||||
contrib/mt-daapd.conf
|
||||
contrib/mt-daapd.playlist
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
action="$1"
|
||||
CONF=/etc/mt-daapd.conf
|
||||
PLAY=/etc/mt-daapd.playlist
|
||||
CACHE=/var/cache/mt-daapd
|
||||
|
||||
case "$1" in
|
||||
|
@ -14,7 +13,6 @@ case "$1" in
|
|||
fi
|
||||
fi
|
||||
if [ ! -f $CONF ] ; then cp /usr/share/doc/mt-daapd/mt-daapd.conf $CONF; fi
|
||||
if [ ! -f $PLAY ] ; then cp /usr/share/doc/mt-daapd/mt-daapd.playlist $PLAY; fi
|
||||
if [ ! -d $CACHE ] ; then mkdir -p $CACHE; fi
|
||||
;;
|
||||
esac
|
||||
|
|
|
@ -27,7 +27,7 @@ endif
|
|||
config.status: configure
|
||||
dh_testdir
|
||||
# Add here commands to configure the package.
|
||||
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
|
||||
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --enable-sqlite
|
||||
|
||||
|
||||
build: build-stamp
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
make clean
|
||||
svn update
|
||||
./reconf.sh
|
||||
VERSION=`svnversion .`
|
||||
cat debian/changelog.templ | sed s/@ver@/svn-$VERSION/g > debian/changelog
|
||||
debian/rules binary
|
Loading…
Reference in New Issue