wok-current view audacious/receipt @ rev 3485
Up: audacious, fix DEPENDS, BUILD_DEPENDS, compile options
| author | Rohit Joshi <jozee@slitaz.org> | 
|---|---|
| date | Wed Jun 17 16:24:10 2009 +0000 (2009-06-17) | 
| parents | e75b1d632d66 | 
| children | c616ce6b7873 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="audacious"
     4 VERSION="2.0.1"
     5 CATEGORY="multimedia"
     6 SHORT_DESC="Music player like xmms"
     7 MAINTAINER="mimas@slitaz.org"
     8 DEPENDS="gtk+ libmowgli libmcs dbus xorg-libXdamage libxml2 libsamplerate"
     9 BUILD_DEPENDS="gtk+-dev libmowgli-dev libmowgli libmcs libmcs-dev dbus-dev libxml2-dev libsamplerate-dev"
    10 TARBALL="$PACKAGE-$VERSION.tgz"
    11 WEB_SITE="http://audacious-media-player.org/"
    12 WGET_URL="http://distfiles.atheme.org/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	sed -i "s/touch -t 0001010000 /touch /g" configure
    19 	./configure \
    20 		--prefix=/usr \
    21 		--infodir=/usr/share/info \
    22 		--mandir=/usr/share/man \
    23 		--disable-sse2 \
    24 		--enable-samplerate \
    25 		$CONFIGURE_ARGS
    26 	make
    27 	make DESTDIR=$PWD/_pkg install
    28 }
    30 # Rules to gen a SliTaz package suitable for Tazpkg.
    31 genpkg_rules()
    32 {
    33 	mkdir -p $fs/usr/share $fs/usr/lib
    34 	cp -a $_pkg/usr/bin $fs/usr
    35 	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib/
    36 	cp -a $_pkg/usr/share/audacious $fs/usr/share
    37 	cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    38 }