wok view libid3tag-dev/receipt @ rev 2899

Add libusb-compat (Fix build of various packages)
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 05 12:00:37 2009 +0200 (2009-05-05)
parents 8eb19732f328
children cb499ecc6b69
line source
1 # SliTaz package receipt.
3 PACKAGE="libid3tag-dev"
4 VERSION="0.15.1b"
5 CATEGORY="development"
6 SHORT_DESC="ID3 tag manipulation library devel files."
7 MAINTAINER="paul@slitaz.org"
8 WANTED="libid3tag"
9 WEB_SITE="http://www.underbit.com/products/mad"
11 # Rules to gen a SliTaz package suitable for Tazpkg.
12 genpkg_rules()
13 {
14 mkdir -p $fs/usr/lib/pkgconfig
15 cp -a $_pkg/usr/include $fs/usr
16 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
18 # libid3tag.pc
19 cat > $fs/usr/lib/pkgconfig/id3tag.pc << _EOT_
20 prefix=/usr
21 exec_prefix=${prefix}
22 libdir=${exec_prefix}/lib
23 includedir=${prefix}/include
25 Name: id3tag
26 Description: ID3 tag manipulation library
27 Requires:
28 Version: $VERSION
29 Libs: -L${libdir} -lid3tag -lz
30 Cflags: -I${includedir}
31 _EOT_
32 }