wok annotate libid3tag-dev/receipt @ 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
children 8eb19732f328
rev   line source
paul@1374 1 # SliTaz package receipt.
paul@1374 2
paul@1374 3 PACKAGE="libid3tag-dev"
paul@1374 4 VERSION="0.15.1b"
paul@1374 5 CATEGORY="development"
paul@1374 6 SHORT_DESC="ID3 tag manipulation library devel files."
paul@1374 7 MAINTAINER="paul@slitaz.org"
paul@1374 8 WANTED="libid3tag"
paul@1374 9 WEB_SITE="http://www.underbit.com/products/mad"
paul@1374 10
paul@1374 11
paul@1374 12 # Rules to configure and make the package.
paul@1374 13 compile_rules()
paul@1374 14 {
paul@1374 15 cd $src
paul@1374 16 ./configure --prefix=/usr $CONFIGURE_ARGS
paul@1374 17 make
paul@1374 18 make DESTDIR=$PWD/_pkg install
paul@1374 19 }
paul@1374 20
paul@1374 21 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@1374 22 genpkg_rules()
paul@1374 23 {
paul@1374 24 mkdir -p $fs/usr/lib
paul@1374 25 cp -a $_pkg/usr/include $fs/usr
paul@1374 26 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
paul@1374 27 }