wok view libid3tag-dev/receipt @ rev 23590

created recipe for python-pysol-cards
author Hans-G?nter Theisgen
date Wed Apr 08 10:28:19 2020 +0100 (2020-04-08)
parents 8ed62ecac0c7
children
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 LICENSE="GPL2"
9 WANTED="libid3tag"
10 WEB_SITE="http://www.underbit.com/products/mad"
11 HOST_ARCH="i486 arm"
13 DEPENDS="libid3tag pkg-config"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/lib/pkgconfig
19 cp -a $install/usr/include $fs/usr
20 cp -a $install/usr/lib/*.*a $fs/usr/lib
22 # libid3tag.pc
23 cat > $fs/usr/lib/pkgconfig/id3tag.pc << _EOT_
24 prefix=/usr
25 exec_prefix=\${prefix}/bin
26 libdir=\${prefix}/lib
27 includedir=\${prefix}/include
29 Name: id3tag
30 Description: ID3 tag manipulation library
31 Requires:
32 Version: $VERSION
33 Libs: -L\${libdir} -lid3tag -lz
34 Cflags:
35 _EOT_
36 }