# HG changeset patch # User Paul Issott # Date 1221145624 0 # Node ID 9691564d9247f8bd7a6a8303f838980c4182b18b # Parent 7f8078c3d20d19dbe91d443e693998171cd737a5 Add: libid3tag (ID3 tag library) diff -r 7f8078c3d20d -r 9691564d9247 libid3tag-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libid3tag-dev/receipt Thu Sep 11 15:07:04 2008 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="libid3tag-dev" +VERSION="0.15.1b" +CATEGORY="development" +SHORT_DESC="ID3 tag manipulation library devel files." +MAINTAINER="paul@slitaz.org" +WANTED="libid3tag" +WEB_SITE="http://www.underbit.com/products/mad" + + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib +} diff -r 7f8078c3d20d -r 9691564d9247 libid3tag/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libid3tag/receipt Thu Sep 11 15:07:04 2008 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="libid3tag" +VERSION="0.15.1b" +CATEGORY="multimedia" +SHORT_DESC="ID3 tag manipulation library." +MAINTAINER="paul@slitaz.org" +DEPENDS="zlib" +BUILD_DEPENDS="zlib-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.underbit.com/products/mad/" +WGET_URL="http://downloads.sourceforge.net/mad/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + strip --strip-unneeded $fs/usr/lib/* +} +