wok view busybox-slish/receipt @ rev 20200

aufs: move kernel module to linux*-aufs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 12 17:29:20 2018 +0100 (2018-02-12)
parents 30cc6214b5bd
children 3705d68ed8f3
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox-slish"
4 VERSION="1.23.2"
5 SOURCE="busybox"
6 CATEGORY="base-system"
7 SHORT_DESC="Busybox for SlisH basic chroot."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.busybox.net/"
13 # Rules to configure and make the package.
14 #
15 # I dont want to compile all BB packages just for a basic build!
16 #
17 compile_rules() {
18 cp $stuff/busybox-${VERSION%.*}.config .config
19 make oldconfig &&
20 make && make install || return 1
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p ${fs}/etc
27 cp -a ${src}/_install/* ${fs}
28 cp ${stuff}/busybox.conf ${fs}/etc/busybox.conf
29 # Set permissions
30 chown -R 0.0 ${fs}/etc
31 chmod 0600 ${fs}/etc/busybox.conf
32 chmod 4755 ${fs}/bin/busybox
33 }