wok-next view libid3tag-dev/receipt @ rev 10721

postfix: Fixed uid for postdrop group and postfix user. We should use uid 75 for postfix user and uid 73 for postdrop. Postdrop group was seting itself to 1000 uid before.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 28 18:20:04 2011 +0000 (2011-05-28)
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 }