wok rev 3699

Up:mpd , fix WGET_URL, improve configure options
author Rohit Joshi <jozee@slitaz.org>
date Fri Jul 17 07:53:41 2009 +0000 (2009-07-17)
parents f3474882f4ec
children a7a741ea5bd4
files mpd/receipt
line diff
     1.1 --- a/mpd/receipt	Fri Jul 17 07:52:06 2009 +0000
     1.2 +++ b/mpd/receipt	Fri Jul 17 07:53:41 2009 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="mpd"
     1.7 -VERSION="0.13.2"
     1.8 +VERSION="0.15.1"
     1.9  CATEGORY="multimedia"
    1.10  SHORT_DESC="Music Player Daemon (MPD)."
    1.11  MAINTAINER="paul@slitaz.org"
    1.12 @@ -9,16 +9,20 @@
    1.13  BUILD_DEPENDS="alsa-lib-dev zlib-dev libid3tag-dev libsamplerate-dev \
    1.14  libmad-dev libogg-dev libvorbis-dev flac-dev libsamplerate \
    1.15  libid3tag"
    1.16 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.18  WEB_SITE="http://www.musicpd.org/"
    1.19 -WGET_URL="http://www.musicpd.org/uploads/files/$TARBALL"
    1.20 +WGET_URL="$SF_MIRROR/musicpd/$TARBALL"
    1.21 +
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26  	cd $src
    1.27  	./configure --prefix=/usr --infodir=/usr/share/info \
    1.28 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.29 +	--mandir=/usr/share/man \
    1.30 +	--disable-jack \
    1.31 +	--with-zeroconf=no \
    1.32 +	$CONFIGURE_ARGS &&
    1.33  	make &&
    1.34  	make DESTDIR=$PWD/_pkg install
    1.35  }