wok annotate pam/receipt @ rev 3053

Add linux-ext4 linux-hfs linux-minix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 13 16:03:39 2009 +0200 (2009-05-13)
parents 8f9353288f5b
children 62be5adc53af
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@2433 12 DEPENDS="libdb"
pascal@1948 13
pascal@1948 14 # Rules to configure and make the package.
pascal@1948 15 compile_rules()
pascal@1948 16 {
pascal@1948 17 cd $src
pascal@1948 18 ln -s $SOURCE-$VERSION ../$PACKAGE-$VERSION
pascal@1948 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1948 20 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1948 21 make &&
pascal@1948 22 make DESTDIR=$PWD/_pkg install
pascal@1948 23 }
pascal@1948 24
pascal@1948 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1948 26 genpkg_rules()
pascal@1948 27 {
pascal@1948 28 mkdir -p $fs/lib
pascal@1948 29 cp -a $_pkg/etc $fs
pascal@1948 30 cp -a $_pkg/var $fs
pascal@1948 31 cp -a $_pkg/sbin $fs
pascal@1948 32 cp -a $_pkg/lib/*so* $fs/lib
pascal@1948 33 cp -a $_pkg/lib/security $fs/lib
pascal@1948 34 rm -f $fs/lib/security/*.la
pascal@2235 35 cp -a stuff/* $fs
pascal@1948 36 }