wok-current annotate busybox/receipt @ rev 282
Busybox: add df -i & hexdump -R
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Feb 26 12:00:01 2008 +0000 (2008-02-26) |
parents | ad2f590c9c94 |
children | b19d783ba624 |
rev | line source |
---|---|
pankso@0 | 1 # SliTaz package receipt. |
pankso@0 | 2 |
pankso@0 | 3 PACKAGE="busybox" |
pankso@0 | 4 VERSION="1.7.3" |
pankso@0 | 5 CATEGORY="base-system" |
pankso@0 | 6 SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities." |
pankso@0 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@54 | 8 DEPENDS="slitaz-base-files" |
pascal@282 | 9 BUILD_DEPENDS="bzip2" |
pankso@0 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@0 | 11 WEB_SITE="http://www.busybox.net/" |
pankso@0 | 12 WGET_URL="http://www.busybox.net/downloads/$TARBALL" |
pankso@0 | 13 |
pankso@0 | 14 # Rules to configure and make the package. |
pankso@0 | 15 compile_rules() |
pankso@0 | 16 { |
pascal@282 | 17 patch -p0 < stuff/$PACKAGE-$VERSION-hexdump.u |
pascal@282 | 18 patch -p0 < stuff/$PACKAGE-$VERSION-df.u |
pankso@0 | 19 cp stuff/$PACKAGE-$VERSION.config $PACKAGE-$VERSION/.config |
pankso@0 | 20 cd $PACKAGE-$VERSION |
pankso@0 | 21 make oldconfig |
pankso@0 | 22 make && make install |
pankso@0 | 23 echo "Chmod 4755 on busybox binary..." |
pankso@0 | 24 chmod 4755 _install/bin/busybox |
pankso@0 | 25 } |
pankso@0 | 26 |
pankso@0 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@0 | 28 genpkg_rules() |
pankso@0 | 29 { |
pankso@0 | 30 cp -a $src/_install/* $fs |
pankso@0 | 31 mkdir $fs/etc |
pankso@0 | 32 # Busybox config file. |
pankso@0 | 33 cp stuff/busybox.conf $fs/etc |
pankso@0 | 34 chmod 600 $fs/etc/busybox.conf |
pankso@0 | 35 cd $fs |
pankso@0 | 36 rm linuxrc |
pankso@0 | 37 ln -s bin/busybox init |
pankso@0 | 38 cd $WOK/$PACKAGE |
pankso@0 | 39 # Udhcpc stuff. |
pankso@0 | 40 mkdir -p $fs/usr/share/udhcpc |
pankso@0 | 41 cp $src/examples/udhcp/simple.script \ |
pankso@0 | 42 $fs/usr/share/udhcpc/default.script |
pankso@0 | 43 chmod +x $fs/usr/share/udhcpc/default.script |
pankso@0 | 44 } |