wok-4.x annotate busybox/receipt @ rev 790
Add dbus message BUS from Freedesktop
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Thu May 15 20:46:50 2008 +0200 (2008-05-15) |
parents | 9c508a04c78d |
children | 54ec4b7ae767 |
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@751 | 18 while read file; do |
pascal@751 | 19 patch -p1 < ../stuff/$file || return 1 |
pascal@751 | 20 done <<EOT |
pascal@751 | 21 $PACKAGE-$VERSION-patch.u |
pascal@751 | 22 $PACKAGE-$VERSION-vcsa2txt.u |
pascal@751 | 23 $PACKAGE-$VERSION-cpio.u |
pascal@751 | 24 $PACKAGE-$VERSION-dhcpc.u |
pascal@751 | 25 $PACKAGE-$VERSION-cpio-mkdir.u |
pascal@751 | 26 $PACKAGE-$VERSION-cpio-mtime.u |
pascal@751 | 27 $PACKAGE-$VERSION-unlzma.u |
pascal@751 | 28 $PACKAGE-$VERSION-tftp.u |
pascal@751 | 29 $PACKAGE-$VERSION-tar.u |
pascal@751 | 30 $PACKAGE-$VERSION-script.u |
pascal@756 | 31 $PACKAGE-$VERSION-header_tar.u |
pascal@757 | 32 $PACKAGE-$VERSION-fixes-$VERSION.u |
pascal@751 | 33 EOT |
pascal@619 | 34 cp ../stuff/$PACKAGE-$VERSION.config .config |
pankso@0 | 35 make oldconfig |
pankso@0 | 36 make && make install |
pankso@0 | 37 echo "Chmod 4755 on busybox binary..." |
pankso@0 | 38 chmod 4755 _install/bin/busybox |
pankso@0 | 39 } |
pankso@0 | 40 |
pankso@0 | 41 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@0 | 42 genpkg_rules() |
pankso@0 | 43 { |
pankso@0 | 44 cp -a $src/_install/* $fs |
pascal@620 | 45 mkdir -p $fs/etc/init.d |
pascal@514 | 46 # Busybox config files. |
pankso@0 | 47 cp stuff/busybox.conf $fs/etc |
pankso@0 | 48 chmod 600 $fs/etc/busybox.conf |
pascal@514 | 49 cp stuff/dnsd.conf $fs/etc |
pascal@514 | 50 cp stuff/udhcpd.conf $fs/etc |
pascal@620 | 51 cp stuff/inetd.conf $fs/etc |
pascal@620 | 52 cp stuff/dnsd $fs/etc/init.d |
pascal@620 | 53 cp stuff/udhcpd $fs/etc/init.d |
pascal@620 | 54 cp stuff/inetd $fs/etc/init.d |
pankso@0 | 55 cd $fs |
pankso@0 | 56 rm linuxrc |
pankso@0 | 57 ln -s bin/busybox init |
pankso@0 | 58 cd $WOK/$PACKAGE |
pankso@0 | 59 # Udhcpc stuff. |
pankso@0 | 60 mkdir -p $fs/usr/share/udhcpc |
pankso@0 | 61 cp $src/examples/udhcp/simple.script \ |
pankso@0 | 62 $fs/usr/share/udhcpc/default.script |
pankso@0 | 63 chmod +x $fs/usr/share/udhcpc/default.script |
pankso@0 | 64 } |
pankso@557 | 65 |
pankso@557 | 66 # Force glibc-2.7 reinstall if 2.3.6 still in use. |
pankso@557 | 67 pre_install() |
pankso@557 | 68 { |
pascal@567 | 69 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then |
pankso@557 | 70 tazpkg get-install glibc-base --forced |
pankso@557 | 71 fi |
pankso@557 | 72 } |