wok-next annotate turnserver/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
children 0848d0285d55
rev   line source
pascal@5750 1 # SliTaz package receipt.
pascal@5750 2
pascal@5750 3 PACKAGE="turnserver"
pascal@5750 4 VERSION="0.4"
pascal@5750 5 CATEGORY="network"
pascal@5750 6 SHORT_DESC="open-source TURN server implementation."
pascal@5750 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@5750 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@5750 9 WEB_SITE="http://turnserver.sourceforge.net/"
pascal@5750 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@5750 11 DEPENDS="openssl"
pascal@5750 12 BUILD_DEPENDS="libconfuse openssl-dev"
pascal@5750 13
pascal@5750 14 # Rules to configure and make the package.
pascal@5750 15 compile_rules()
pascal@5750 16 {
pascal@5750 17 cd $src
pascal@5750 18 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@5750 19 $CONFIGURE_ARGS &&
pascal@5750 20 make &&
pascal@5750 21 make DESTDIR=$PWD/_pkg install
pascal@5750 22 }
pascal@5750 23
pascal@5750 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@5750 25 genpkg_rules()
pascal@5750 26 {
pascal@5750 27 mkdir -p $fs/usr
pascal@5750 28 cp -a $_pkg/usr/bin $fs/usr
pascal@5750 29 }
pascal@5750 30