wok-next view uclibc-cross-compiler-mips64/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 8da46cc14f57
children d357d6dbbfa8
line source
1 # SliTaz package receipt.
3 PACKAGE="uclibc-cross-compiler-mips64"
4 VERSION="prebuilt"
5 CATEGORY="development"
6 SHORT_DESC="Toolchain for uclibc/mips64."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="cross-compiler-mips64"
9 TARBALL="$SOURCE.tar.bz2"
10 WEB_SITE="http://impactlinux.com/aboriginal"
11 WGET_URL="$WEB_SITE/downloads/binaries/$TARBALL"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr/share $fs/usr/bin
17 cp -a $src $fs/usr/share/$PACKAGE
18 for i in $(cd $src ; ls bin/${PACKAGE##*-}-*); do
19 file=$(basename $i)
20 ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file
21 done
22 }