wok-current view libid3tag-dev/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | f3474882f4ec |
children | 8f447cf2eee5 |
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 DEPENDS="libid3tag"
9 WANTED="libid3tag"
10 WEB_SITE="http://www.underbit.com/products/mad"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 mkdir -p $fs/usr/lib/pkgconfig
16 cp -a $_pkg/usr/include $fs/usr
17 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
19 # libid3tag.pc
20 cat > $fs/usr/lib/pkgconfig/id3tag.pc << _EOT_
21 prefix=/usr
22 exec_prefix=\${prefix}/bin
23 libdir=\${prefix}/lib
24 includedir=\${prefix}/include
26 Name: id3tag
27 Description: ID3 tag manipulation library
28 Requires:
29 Version: $VERSION
30 Libs: -L\${libdir} -lid3tag -lz
31 Cflags:
32 _EOT_
33 }