wok view sudo/receipt @ rev 9470

Remove some uneeded strips (thoses ones are handled by Tazwok)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Apr 04 01:29:52 2011 +0200 (2011-04-04)
parents 4ed538cf3c13
children 30937e5ffc8d
line source
1 # SliTaz package receipt.
3 PACKAGE="sudo"
4 VERSION="1.8.0"
5 CATEGORY="security"
6 SHORT_DESC="Sudo (su \"do\") allows a system administrator to delegate authority."
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gratisoft.us/sudo/"
10 WGET_URL="http://www.gratisoft.us/sudo/dist/$TARBALL"
11 CONFIG_FILES="/etc/sudoers"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --sysconfdir=/etc \
19 --without-pam \
20 --with-editor=/bin/vi \
21 --libexecdir=/usr/lib \
23 # Build everything
24 make &&
25 # Install everything
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 mkdir -p $fs/etc
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/sbin $fs/usr
36 cp -a $_pkg/usr/lib/*.so $fs/usr/lib
37 cp -a stuff/sudoers $fs/etc
38 }
40 pre_install()
41 {
42 echo "Processing pre-install commands..."
43 if [ -f $root/etc/sudoers.bak ]; then
44 cp $root/etc/sudoers $root/etc/sudoers.bak
45 fi
46 }
48 post_install()
49 {
50 local root
51 root=$1
52 echo "Processing post-install commands..."
53 if [ -f $root/etc/sudoers.bak ]; then
54 rm -f $root/etc/sudoers
55 mv $root/etc/sudoers.bak $root/etc/sudoers
56 else
57 chown root.root $root/etc/sudoers
58 chmod 0440 $root/etc/sudoers
59 fi
60 }