wok view busybox/receipt @ rev 1924

volatile.cpio.gz in receipt is incompatible with tazpkg stuff
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 23 10:31:12 2008 +0000 (2008-12-23)
parents b46a95b3d2ee
children 4f51ecbb2050
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox"
4 VERSION="1.12.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 glibc-base"
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"
13 CONFIG_FILES="/etc/dnsd.conf /etc/inetd.conf /etc/udhcpd.conf /etc/resolv.conf"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 while read file; do
20 [ -f done.$file ] && continue
21 echo "Apply $file..."
22 patch -p1 < ../stuff/$file || return 1
23 touch done.$file
24 done <<EOT
25 $PACKAGE-$VERSION-vcsa2txt.u
26 $PACKAGE-$VERSION-dhcpc.u
27 $PACKAGE-$VERSION-cpio-mkdir.u
28 $PACKAGE-$VERSION-tar.u
29 $PACKAGE-$VERSION-stat.u
30 $PACKAGE-$VERSION-zmodules.u
31 $PACKAGE-$VERSION-modinfo.u
32 $PACKAGE-$VERSION-modprobe.u
33 $PACKAGE-$VERSION-paths.u
34 EOT
35 cp ../stuff/$PACKAGE-$VERSION.config .config
36 make oldconfig
37 make && make install
38 echo "Chmod 4755 on busybox binary..."
39 chmod 4755 _install/bin/busybox
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 cp -a $src/_install/* $fs
46 mkdir -p $fs/etc/init.d
47 # Busybox config files.
48 cp stuff/busybox.conf $fs/etc
49 chmod 600 $fs/etc/busybox.conf
50 cp stuff/dnsd.conf $fs/etc
51 cp stuff/udhcpd.conf $fs/etc
52 touch $fs/etc/resolv.conf
53 cp stuff/inetd.conf $fs/etc
54 cp stuff/dnsd $fs/etc/init.d
55 cp stuff/udhcpd $fs/etc/init.d
56 cp stuff/inetd $fs/etc/init.d
57 cp stuff/zcip $fs/etc/init.d
58 cp stuff/init $fs
59 rm $fs/linuxrc
60 cd $WOK/$PACKAGE
61 mkdir -p $fs/etc/modprobe.d
62 # Udhcpc stuff.
63 mkdir -p $fs/usr/share/udhcpc
64 cp stuff/udhcp.script \
65 $fs/usr/share/udhcpc/default.script
66 chmod +x $fs/usr/share/udhcpc/default.script
67 # ZeroConf stuff.
68 cp stuff/zcip.script $fs/etc
69 }
71 # Force glibc-2.7 reinstall if 2.3.6 still in use.
72 pre_install()
73 {
74 cp -a /etc/resolv.conf /etc/resolv.conf-busybox-install
75 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then
76 tazpkg get-install glibc-base --forced
77 fi
78 }
80 post_install()
81 {
82 mv -f /etc/resolv.conf-busybox-install /etc/resolv.conf
83 }