wok annotate pam/receipt @ rev 2288
Samba: improve start script
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 21 21:50:42 2009 +0000 (2009-02-21) |
parents | 1414e5066ef3 |
children | a4af2b62bb67 |
rev | line source |
---|---|
pascal@1948 | 1 # SliTaz package receipt. |
pascal@1948 | 2 |
pascal@1948 | 3 PACKAGE="pam" |
pascal@1948 | 4 VERSION="1.0.3" |
pascal@1948 | 5 CATEGORY="system-tools" |
pascal@1948 | 6 SHORT_DESC="Pluggable Authentication Modules." |
pascal@1948 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1948 | 8 SOURCE="Linux-PAM" |
pascal@1948 | 9 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@1948 | 10 WEB_SITE="http://www.us.kernel.org/pub/linux/libs/$PACKAGE/" |
pascal@1948 | 11 WGET_URL="${WEB_SITE}library/$TARBALL" |
pascal@1948 | 12 |
pascal@1948 | 13 # Rules to configure and make the package. |
pascal@1948 | 14 compile_rules() |
pascal@1948 | 15 { |
pascal@1948 | 16 cd $src |
pascal@1948 | 17 ln -s $SOURCE-$VERSION ../$PACKAGE-$VERSION |
pascal@1948 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1948 | 19 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1948 | 20 make && |
pascal@1948 | 21 make DESTDIR=$PWD/_pkg install |
pascal@1948 | 22 } |
pascal@1948 | 23 |
pascal@1948 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1948 | 25 genpkg_rules() |
pascal@1948 | 26 { |
pascal@1948 | 27 mkdir -p $fs/lib |
pascal@1948 | 28 cp -a $_pkg/etc $fs |
pascal@1948 | 29 cp -a $_pkg/var $fs |
pascal@1948 | 30 cp -a $_pkg/sbin $fs |
pascal@1948 | 31 cp -a $_pkg/lib/*so* $fs/lib |
pascal@1948 | 32 cp -a $_pkg/lib/security $fs/lib |
pascal@1948 | 33 rm -f $fs/lib/security/*.la |
pascal@2235 | 34 cp -a stuff/* $fs |
pascal@1948 | 35 } |