wok view libid3tag-dev/receipt @ rev 5833

Up: xfce4-settings (4.6.5)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Jul 16 08:08:20 2010 +0200 (2010-07-16)
parents cb499ecc6b69
children 6856909838d6
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}/bin
22 libdir=\${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:
31 _EOT_
32 }