wok rev 1374

Add: libid3tag (ID3 tag library)
author Paul Issott <paul@slitaz.org>
date Thu Sep 11 15:07:04 2008 +0000 (2008-09-11)
parents 7f8078c3d20d
children 88984e566042
files libid3tag-dev/receipt libid3tag/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libid3tag-dev/receipt	Thu Sep 11 15:07:04 2008 +0000
     1.3 @@ -0,0 +1,27 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libid3tag-dev"
     1.7 +VERSION="0.15.1b"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="ID3 tag manipulation library devel files."
    1.10 +MAINTAINER="paul@slitaz.org"
    1.11 +WANTED="libid3tag"
    1.12 +WEB_SITE="http://www.underbit.com/products/mad"
    1.13 +
    1.14 +
    1.15 +# Rules to configure and make the package.
    1.16 +compile_rules()
    1.17 +{
    1.18 +	cd $src
    1.19 +	./configure --prefix=/usr $CONFIGURE_ARGS
    1.20 +	make
    1.21 +	make DESTDIR=$PWD/_pkg install
    1.22 +}
    1.23 +
    1.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.25 +genpkg_rules()
    1.26 +{
    1.27 +	mkdir -p $fs/usr/lib
    1.28 +	cp -a $_pkg/usr/include $fs/usr
    1.29 +	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    1.30 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libid3tag/receipt	Thu Sep 11 15:07:04 2008 +0000
     2.3 @@ -0,0 +1,30 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="libid3tag"
     2.7 +VERSION="0.15.1b"
     2.8 +CATEGORY="multimedia"
     2.9 +SHORT_DESC="ID3 tag manipulation library."
    2.10 +MAINTAINER="paul@slitaz.org"
    2.11 +DEPENDS="zlib"
    2.12 +BUILD_DEPENDS="zlib-dev"
    2.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.14 +WEB_SITE="http://www.underbit.com/products/mad/"
    2.15 +WGET_URL="http://downloads.sourceforge.net/mad/$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 --prefix=/usr $CONFIGURE_ARGS
    2.22 +	make
    2.23 +	make DESTDIR=$PWD/_pkg install
    2.24 +}
    2.25 +
    2.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.27 +genpkg_rules()
    2.28 +{
    2.29 +	mkdir -p $fs/usr/lib
    2.30 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    2.31 +	strip --strip-unneeded $fs/usr/lib/*
    2.32 +} 
    2.33 +