wok rev 293

Add: easytag (TAG Editor) and id3lib
author Christophe Lincoln <pankso@slitaz.org>
date Fri Feb 29 17:12:38 2008 +0100 (2008-02-29)
parents 0a5addc44b00
children b4a01f0363f7
files easytag/receipt id3lib-dev/receipt id3lib/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/easytag/receipt	Fri Feb 29 17:12:38 2008 +0100
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="easytag"
     1.7 +VERSION="2.1"
     1.8 +CATEGORY="multimedia"
     1.9 +SHORT_DESC="Utility for viewing and editing tags on sound files."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="gtk+ id3lib"
    1.12 +BUILD_DEPENDS="gtk+-dev id3lib-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14 +WEB_SITE="http://easytag.sourceforge.net/"
    1.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure \
    1.22 +		--prefix=/usr \
    1.23 +		--mandir=/usr/share/man \
    1.24 +		$CONFIGURE_ARGS
    1.25 +	make
    1.26 +	make DESTDIR=$PWD/_pkg install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr/share
    1.33 +	cp -a $_pkg/usr/bin $fs/usr
    1.34 +	cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    1.35 +}
    1.36 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/id3lib-dev/receipt	Fri Feb 29 17:12:38 2008 +0100
     2.3 @@ -0,0 +1,18 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="id3lib-dev"
     2.7 +VERSION="3.8.3"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="Devel files for id3lib."
    2.10 +MAINTAINER="pankso@slitaz.org"
    2.11 +WANTED="id3lib"
    2.12 +WEB_SITE="http://id3lib.sourceforge.net/"
    2.13 +
    2.14 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.15 +genpkg_rules()
    2.16 +{
    2.17 +	mkdir -p $fs/usr/lib
    2.18 +	cp -a $_pkg/usr/include $fs/usr
    2.19 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    2.20 +}
    2.21 +
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/id3lib/receipt	Fri Feb 29 17:12:38 2008 +0100
     3.3 @@ -0,0 +1,30 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="id3lib"
     3.7 +VERSION="3.8.3"
     3.8 +CATEGORY="multimedia"
     3.9 +SHORT_DESC="Library to manipulate ID3v1  and ID3v2 tags."
    3.10 +MAINTAINER="pankso@slitaz.org"
    3.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.12 +WEB_SITE="http://id3lib.sourceforge.net/"
    3.13 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    3.14 +
    3.15 +# Rules to configure and make the package.
    3.16 +compile_rules()
    3.17 +{
    3.18 +	cd $src
    3.19 +	./configure \
    3.20 +		--prefix=/usr \
    3.21 +		$CONFIGURE_ARGS
    3.22 +	make
    3.23 +	make DESTDIR=$PWD/_pkg install
    3.24 +}
    3.25 +
    3.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.27 +genpkg_rules()
    3.28 +{
    3.29 +	mkdir -p $fs/usr/lib
    3.30 +	cp -a $_pkg/usr/bin $fs/usr
    3.31 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    3.32 +}
    3.33 +