wok view busybox-pam/receipt @ rev 23897

Down busybox (1.31.1) : 1.32 breaks boot display and ${COOKOPTS/!someopt/} in cookutils
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 06:08:41 2020 +0000 (2020-07-28)
parents 7a039a870626
children 73f36875e5a7
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox-pam"
4 VERSION="1.31.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 DEPENDS="busybox pam"
10 WANTED="busybox"
11 WEB_SITE="http://www.busybox.net/"
12 CONFIG_FILES="/etc/pam.d"
13 PROVIDE="busybox:pam"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/bin
19 cp -a $src/busybox-pam $fs/bin/busybox
20 cp -a $stuff/* $fs
21 }
23 pre_remove()
24 {
25 # We install non-pam busybox to replace busybox-pam.
26 tazpkg get-install ${PACKAGE%-pam} --forced
28 # We remove /bin/busybox from the file.list of busybox-pam.
29 # This way, the non-pam busybox we just installed will not be
30 # removed.
31 sed '/\/bin\/busybox/d' \
32 -i /var/lib/tazpkg/installed/busybox-pam/files.list
33 }
35 post_install()
36 {
37 chmod 4755 "$1/bin/busybox"
38 }