wok view busybox/receipt @ rev 517

Busybox: Add top and cpio (with cpio -o -H new support)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 08 14:42:37 2008 +0000 (2008-04-08)
parents 73742fcba19a
children 38edb0e5bd67
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox"
4 VERSION="1.10.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="slitaz-base-files"
9 BUILD_DEPENDS="bzip2"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.busybox.net/"
12 WGET_URL="http://www.busybox.net/downloads/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 patch -p0 < stuff/$PACKAGE-$VERSION-patch.u
18 patch -p0 < stuff/$PACKAGE-$VERSION-vcsa2txt.u
19 patch -p0 < stuff/$PACKAGE-$VERSION-cpio.u
20 cp stuff/$PACKAGE-$VERSION.config $PACKAGE-$VERSION/.config
21 cd $PACKAGE-$VERSION
22 make oldconfig
23 make && make install
24 echo "Chmod 4755 on busybox binary..."
25 chmod 4755 _install/bin/busybox
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $src/_install/* $fs
32 mkdir $fs/etc
33 # Busybox config files.
34 cp stuff/busybox.conf $fs/etc
35 chmod 600 $fs/etc/busybox.conf
36 cp stuff/dnsd.conf $fs/etc
37 cp stuff/udhcpd.conf $fs/etc
38 cd $fs
39 rm linuxrc
40 ln -s bin/busybox init
41 cd $WOK/$PACKAGE
42 # Udhcpc stuff.
43 mkdir -p $fs/usr/share/udhcpc
44 cp $src/examples/udhcp/simple.script \
45 $fs/usr/share/udhcpc/default.script
46 chmod +x $fs/usr/share/udhcpc/default.script
47 }