wok view busybox-pam/receipt @ rev 12192

Add msmtp (use external SMTP server and avois postfix/sendmail, may be used ny Pizza)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 26 01:28:28 2012 +0200 (2012-03-26)
parents 31974934cb2a
children 2a66c0430085
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox-pam"
4 VERSION="1.18.4"
5 CATEGORY="base-system"
6 SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="busybox pam"
9 WANTED="busybox"
10 WEB_SITE="http://www.busybox.net/"
11 CONFIG_FILES="/etc/pam.d"
12 PROVIDE="busybox:pam"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/bin
18 cp -a $src/busybox-pam $fs/bin/busybox
19 cp -a $stuff/* $fs
20 }
22 pre_remove()
23 {
24 # We install non-pam busybox to replace busybox-pam.
25 tazpkg get-install ${PACKAGE%-pam} --forced
27 # We remove /bin/busybox from the file.list of busybox-pam.
28 # This way, the non-pam busybox we just installed will not be
29 # removed.
30 sed '/\/bin\/busybox/d' \
31 -i /var/lib/tazpkg/installed/busybox-pam/files.list
32 }
34 post_install()
35 {
36 chmod 4755 $1/bin/busybox
37 }