wok annotate libid3tag-dev/receipt @ rev 2872

libid3tag-dev: Tiny edit
author Paul Issott <paul@slitaz.org>
date Sun May 03 09:56:38 2009 +0000 (2009-05-03)
parents 8eb19732f328
children cb499ecc6b69
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 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@1374 12 genpkg_rules()
paul@1374 13 {
pankso@2865 14 mkdir -p $fs/usr/lib/pkgconfig
paul@1374 15 cp -a $_pkg/usr/include $fs/usr
paul@1374 16 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
paul@2872 17
pankso@2865 18 # libid3tag.pc
paul@2872 19 cat > $fs/usr/lib/pkgconfig/id3tag.pc << _EOT_
pankso@2865 20 prefix=/usr
pankso@2865 21 exec_prefix=${prefix}
pankso@2865 22 libdir=${exec_prefix}/lib
pankso@2865 23 includedir=${prefix}/include
pankso@2865 24
pankso@2865 25 Name: id3tag
pankso@2865 26 Description: ID3 tag manipulation library
pankso@2865 27 Requires:
pankso@2865 28 Version: $VERSION
pankso@2865 29 Libs: -L${libdir} -lid3tag -lz
pankso@2865 30 Cflags: -I${includedir}
pankso@2865 31 _EOT_
paul@1374 32 }