wok annotate pam/receipt @ rev 13438
Up: claws-mail-notification (0.30)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Oct 07 01:20:11 2012 +0200 (2012-10-07) |
parents | 79d46277d7f9 |
children | e7b91865d675 |
rev | line source |
---|---|
pascal@1948 | 1 # SliTaz package receipt. |
pascal@1948 | 2 |
pascal@1948 | 3 PACKAGE="pam" |
slaxemulator@11183 | 4 VERSION="1.1.5" |
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" |
slaxemulator@11183 | 10 WEB_SITE="http://www.us.kernel.org/pub/linux/libs/pam/" |
gokhlayeh@11386 | 11 # Download sources from a non-https mirror so that tazwok can |
gokhlayeh@11386 | 12 # cook the toolchain (pam is a build-depend of busybox). |
gokhlayeh@11386 | 13 # It's because at this moment tazwok doesn't have access to https |
gokhlayeh@11386 | 14 # compatible wget. |
gokhlayeh@11386 | 15 WGET_URL="http://gentoo.osuosl.org/distfiles/$TARBALL" |
pankso@9743 | 16 |
rcx@3646 | 17 DEPENDS="glibc-base libdb" |
pascal@13021 | 18 BUILD_DEPENDS="flex db db-dev libdb" |
pascal@1948 | 19 |
pascal@1948 | 20 # Rules to configure and make the package. |
pascal@1948 | 21 compile_rules() |
pascal@1948 | 22 { |
pascal@1948 | 23 cd $src |
slaxemulator@11183 | 24 ./configure --sysconfdir=/etc $CONFIGURE_ARGS && |
pankso@9743 | 25 make && make install |
pascal@1948 | 26 } |
pascal@1948 | 27 |
pascal@1948 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1948 | 29 genpkg_rules() |
pascal@1948 | 30 { |
pascal@1948 | 31 mkdir -p $fs/lib |
pascal@1948 | 32 cp -a $_pkg/etc $fs |
pascal@1948 | 33 cp -a $_pkg/var $fs |
pascal@1948 | 34 cp -a $_pkg/sbin $fs |
pascal@1948 | 35 cp -a $_pkg/lib/*so* $fs/lib |
pascal@1948 | 36 cp -a $_pkg/lib/security $fs/lib |
pascal@1948 | 37 rm -f $fs/lib/security/*.la |
pankso@9743 | 38 cp -a $stuff/* $fs |
pascal@1948 | 39 } |
gokhlayeh@11446 | 40 |
gokhlayeh@11446 | 41 pre_remove() |
gokhlayeh@11446 | 42 { |
gokhlayeh@11446 | 43 # If busybox-pam is installed, trigger its removal right now. Once pam shared |
gokhlayeh@11446 | 44 # library will be removed, it will be too late. Don't worry about this, while |
gokhlayeh@11446 | 45 # removing busybox-pam will replace itself by a non-pam busybox. |
gokhlayeh@11446 | 46 if [ -d /var/lib/tazpkg/installed/busybox-pam ]; then |
gokhlayeh@11446 | 47 tazpkg remove busybox-pam --auto |
gokhlayeh@11446 | 48 fi |
gokhlayeh@11446 | 49 } |