wok view busybox-static/receipt @ rev 22254

updated xorg-xdriinfo (1.0.4 -> 1.0.6)
author Hans-G?nter Theisgen
date Tue Nov 12 17:09:31 2019 +0100 (2019-11-12)
parents c9d02f08d860
children 7a039a870626
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox-static"
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 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 ; do # diet's busybox umount crash
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 }