wok view busybox-static/receipt @ rev 19901

Up: sqlite (3.18.0)
author Alexander Medvedev <devl547@gmail.com>
date Sat Apr 08 21:42:14 2017 +0000 (2017-04-08)
parents 9c81bcc2a3b7
children 82be380ad907
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox-static"
4 VERSION="1.26.2"
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 WEB_SITE="http://www.busybox.net/"
10 CONFIG_FILES=""
12 WANTED="busybox"
13 DEPENDS=""
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/share/boot
19 CHOICE=static
20 for i in uclibc musl diet ; do
21 [ -x $src/busybox-$i ] || continue
22 [ -x $src/busybox-$CHOICE ] &&
23 [ $(stat -c %s $src/busybox-$i) -ge \
24 $(stat -c %s $src/busybox-$CHOICE) ] &&
25 continue
26 CHOICE=$i
27 done
28 cp -a $src/busybox-$CHOICE $fs/usr/share/boot/busybox-static
29 }
31 post_install()
32 {
33 chmod 4755 "$1/usr/share/boot/busybox-static"
34 }