wok view libid3tag-dev/receipt @ rev 3033

libmpeg2: Fix typo in DEPENDS
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 12 14:40:02 2009 +0200 (2009-05-12)
parents ba5376bd8361
children f3474882f4ec
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=/usr/bin
22 libdir=/usr/lib
23 includedir=/usr/include
25 Name: id3tag
26 Description: ID3 tag manipulation library
27 Requires:
28 Version: 0.15.1b
29 Libs: -L${libdir} -lid3tag -lz
30 Cflags:
31 _EOT_
32 }