Debian build fixes

This commit is contained in:
Ron Pedde 2006-10-12 02:40:56 +00:00
parent 6d54f3c826
commit db41f2a83a
6 changed files with 16 additions and 5 deletions

View File

@ -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
debian/control vendored
View File

@ -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

2
debian/docs vendored
View File

@ -3,4 +3,4 @@ NEWS
README
TODO
contrib/mt-daapd.conf
contrib/mt-daapd.playlist

2
debian/postinst vendored
View File

@ -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

2
debian/rules vendored
View File

@ -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

8
mkdeb.sh.templ Executable file
View File

@ -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