wok-next annotate spandsp/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 640ddbff13b4
children b7319995b37e
rev   line source
pascal@1178 1 # SliTaz package receipt.
pascal@1178 2
pascal@9043 3 PACKAGE="spandsp"
pascal@9043 4 VERSION="0.0.5"
pascal@9043 5 CATEGORY="system-tools"
pascal@9043 6 SHORT_DESC="library of DSP functions for telephony."
pascal@1178 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@9043 8 TARBALL="$PACKAGE-$VERSION.tgz"
pascal@9043 9 WEB_SITE="http://www.soft-switch.org/"
pascal@9043 10 WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL"
pascal@9043 11 DEPENDS="tiff zlib jpeg"
pascal@1178 12
pascal@1178 13 # Rules to configure and make the package.
pascal@1178 14 compile_rules()
pascal@1178 15 {
pascal@1178 16 cd $src
pascal@9043 17 ./configure --prefix=/usr &&
pascal@9048 18 make -j1 &&
pascal@9048 19 make -j1 install
pascal@1178 20 }
pascal@1178 21
pascal@1178 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1178 23 genpkg_rules()
pascal@1178 24 {
pascal@9043 25 mkdir -p $fs/usr/lib
pascal@9043 26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@1178 27 }