wok diff aqualung/receipt @ rev 4309

Add: aufs-utils (aufs2 utilities)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Sep 28 15:57:37 2009 +0200 (2009-09-28)
parents
children 638675539fc5
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/aqualung/receipt	Mon Sep 28 15:57:37 2009 +0200
     1.3 @@ -0,0 +1,41 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="aqualung"
     1.7 +VERSION="0.9beta10"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="Aqualung audio player."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="gtk+ alsa-lib libogg libvorbis flac lame libsamplerate"
    1.12 +BUILD_DEPENDS="gtk+-dev alsa-lib-dev libogg-dev libvorbis-dev flac-dev \
    1.13 +lame-dev libsamplerate-dev"
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 +WEB_SITE="http://aqualung.factorial.hu/"
    1.16 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.17 +TAGS="music audio player mp3 ogg"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	cd $src
    1.23 +	./configure \
    1.24 +		--prefix=/usr \
    1.25 +		--infodir=/usr/share/info \
    1.26 +		--mandir=/usr/share/man \
    1.27 +		--with-lavc=no \
    1.28 +		--with-jack=no \
    1.29 +		$CONFIGURE_ARGS &&
    1.30 +	make &&
    1.31 +	make DESTDIR=$PWD/_pkg install
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()
    1.36 +{
    1.37 +	mkdir -p $fs/usr/share/pixmaps
    1.38 +	cp -a $_pkg/usr/bin $fs/usr
    1.39 +	cp -a $_pkg/usr/share/aqualung $fs/usr/share
    1.40 +	# Remove doc
    1.41 +	rm -rf $fs/usr/share/aqualung/doc
    1.42 +	cd $fs/usr/share/pixmaps
    1.43 +	ln -s ../aqualung/general.png aqualung.png
    1.44 +}