wok rev 2030

Add: audacious, audacious-dev, audacious-plugins
author Fabrice THIROUX <mimas@slitaz.org>
date Fri Jan 09 23:16:51 2009 +0100 (2009-01-09)
parents 08a7f948dc8f
children a55e3f4e3eb0
files audacious-dev/receipt audacious-plugins/receipt audacious/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/audacious-dev/receipt	Fri Jan 09 23:16:51 2009 +0100
     1.3 @@ -0,0 +1,17 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="audacious-dev"
     1.7 +VERSION="1.5.1"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="Music player like xmms"
    1.10 +MAINTAINER="mimasgpc@free.fr"
    1.11 +WANTED="audacious"
    1.12 +
    1.13 +
    1.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.15 +genpkg_rules()
    1.16 +{
    1.17 +	mkdir -p $fs/usr/lib
    1.18 +	cp -a $_pkg/usr/include $fs/usr
    1.19 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    1.20 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/audacious-plugins/receipt	Fri Jan 09 23:16:51 2009 +0100
     2.3 @@ -0,0 +1,36 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="audacious-plugins"
     2.7 +VERSION="1.5.1"
     2.8 +CATEGORY="multimedia"
     2.9 +SHORT_DESC="Plugins for audacious music player"
    2.10 +MAINTAINER="mimas@litaz.org"
    2.11 +DEPENDS="audacious neon libogg libvorbis alsa-lib lame flac"
    2.12 +BUILD_DEPENDS="audacious-dev neon flac-dev libogg-dev libvorbis-dev alsa-lib-dev lame-dev"
    2.13 +TARBALL="$PACKAGE-$VERSION.tbz2"
    2.14 +WEB_SITE="http://audacious-media-player.org/"
    2.15 +WGET_URL="http://distfiles.atheme.org/$TARBALL"
    2.16 +
    2.17 +# Rules to configure and make the package.
    2.18 +compile_rules()
    2.19 +{
    2.20 +	cd $src
    2.21 +	./configure \
    2.22 +		--prefix=/usr \
    2.23 +		--infodir=/usr/share/info \
    2.24 +		--mandir=/usr/share/man \
    2.25 +		--disable-sse2 \
    2.26 +		$CONFIGURE_ARGS
    2.27 +	make
    2.28 +	make DESTDIR=$PWD/_pkg install
    2.29 +}
    2.30 +
    2.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.32 +genpkg_rules()
    2.33 +{
    2.34 +	mkdir -p $fs/usr/share/locale
    2.35 +	cp -a $_pkg/usr/lib $fs/usr
    2.36 +	cp -a $_pkg/usr/share/audacious $fs/usr/share
    2.37 +	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    2.38 +}
    2.39 +
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/audacious/receipt	Fri Jan 09 23:16:51 2009 +0100
     3.3 @@ -0,0 +1,42 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="audacious"
     3.7 +VERSION="1.5.1"
     3.8 +CATEGORY="multimedia"
     3.9 +SHORT_DESC="Music player like xmms"
    3.10 +MAINTAINER="mimas@slitaz.org"
    3.11 +DEPENDS="gtk+ libmowgli libmcs dbus"
    3.12 +BUILD_DEPENDS="gtk+-dev libmowgli-dev libmcs-dev dbus-dev"
    3.13 +TARBALL="$PACKAGE-$VERSION.tbz2"
    3.14 +WEB_SITE="http://audacious-media-player.org/"
    3.15 +WGET_URL="http://distfiles.atheme.org/$TARBALL"
    3.16 +
    3.17 +# Rules to configure and make the package.
    3.18 +compile_rules()
    3.19 +{
    3.20 +	cd $src
    3.21 +	./configure \
    3.22 +		--prefix=/usr \
    3.23 +		--infodir=/usr/share/info \
    3.24 +		--mandir=/usr/share/man \
    3.25 +		--disable-sse2 \
    3.26 +		$CONFIGURE_ARGS
    3.27 +	make
    3.28 +	make DESTDIR=$PWD/_pkg install
    3.29 +}
    3.30 +
    3.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.32 +genpkg_rules()
    3.33 +{
    3.34 +	mkdir -p $fs/usr/share/locale
    3.35 +	mkdir -p $fs/usr/lib
    3.36 +	cp -a $_pkg/usr/bin $fs/usr
    3.37 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib/
    3.38 +	rm -rf $fs/usr/pkgconfig
    3.39 +	cp -a $_pkg/usr/share/applications $fs/usr/share
    3.40 +	cp -a $_pkg/usr/share/audacious $fs/usr/share
    3.41 +	cp -a $_pkg/usr/share/pixmaps $fs/usr/share/
    3.42 +	strip -s $fs/usr/bin/*
    3.43 +	strip -s $fs/usr/lib/*
    3.44 +}
    3.45 +