wok-stable annotate busybox/receipt @ rev 620
busybox: dnsd inetd udhcpd startup scripts
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Apr 19 19:31:00 2008 +0000 (2008-04-19) |
parents | 87b81df312aa |
children | 3c49a36cd5e3 |
rev | line source |
---|---|
pankso@0 | 1 # SliTaz package receipt. |
pankso@0 | 2 |
pankso@0 | 3 PACKAGE="busybox" |
pascal@619 | 4 VERSION="1.10.1" |
pankso@0 | 5 CATEGORY="base-system" |
pankso@0 | 6 SHORT_DESC="Busybox combines tiny versions of many common UNIX utilities." |
pankso@289 | 7 MAINTAINER="pascal.bellard@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 { |
pankso@0 | 17 cd $PACKAGE-$VERSION |
pascal@619 | 18 patch -p1 < ../stuff/$PACKAGE-$VERSION-patch.u |
pascal@619 | 19 patch -p1 < ../stuff/$PACKAGE-$VERSION-vcsa2txt.u |
pascal@619 | 20 patch -p1 < ../stuff/$PACKAGE-$VERSION-cpio.u |
pascal@619 | 21 patch -p1 < ../stuff/$PACKAGE-$VERSION-dhcpc.u |
pascal@619 | 22 patch -p1 < ../stuff/$PACKAGE-$VERSION-cpio-mkdir.u |
pascal@619 | 23 cp ../stuff/$PACKAGE-$VERSION.config .config |
pankso@0 | 24 make oldconfig |
pankso@0 | 25 make && make install |
pankso@0 | 26 echo "Chmod 4755 on busybox binary..." |
pankso@0 | 27 chmod 4755 _install/bin/busybox |
pankso@0 | 28 } |
pankso@0 | 29 |
pankso@0 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@0 | 31 genpkg_rules() |
pankso@0 | 32 { |
pankso@0 | 33 cp -a $src/_install/* $fs |
pascal@620 | 34 mkdir -p $fs/etc/init.d |
pascal@514 | 35 # Busybox config files. |
pankso@0 | 36 cp stuff/busybox.conf $fs/etc |
pankso@0 | 37 chmod 600 $fs/etc/busybox.conf |
pascal@514 | 38 cp stuff/dnsd.conf $fs/etc |
pascal@514 | 39 cp stuff/udhcpd.conf $fs/etc |
pascal@620 | 40 cp stuff/inetd.conf $fs/etc |
pascal@620 | 41 cp stuff/dnsd $fs/etc/init.d |
pascal@620 | 42 cp stuff/udhcpd $fs/etc/init.d |
pascal@620 | 43 cp stuff/inetd $fs/etc/init.d |
pankso@0 | 44 cd $fs |
pankso@0 | 45 rm linuxrc |
pankso@0 | 46 ln -s bin/busybox init |
pankso@0 | 47 cd $WOK/$PACKAGE |
pankso@0 | 48 # Udhcpc stuff. |
pankso@0 | 49 mkdir -p $fs/usr/share/udhcpc |
pankso@0 | 50 cp $src/examples/udhcp/simple.script \ |
pankso@0 | 51 $fs/usr/share/udhcpc/default.script |
pankso@0 | 52 chmod +x $fs/usr/share/udhcpc/default.script |
pankso@0 | 53 } |
pankso@557 | 54 |
pankso@557 | 55 # Force glibc-2.7 reinstall if 2.3.6 still in use. |
pankso@557 | 56 pre_install() |
pankso@557 | 57 { |
pascal@567 | 58 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then |
pankso@557 | 59 tazpkg get-install glibc-base --forced |
pankso@557 | 60 fi |
pankso@557 | 61 } |