wok view busybox/receipt @ rev 857

busybox: add stat -m
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 26 11:22:59 2008 +0000 (2008-05-26)
parents 54ec4b7ae767
children ae743024f98b
line source
1 # SliTaz package receipt.
3 PACKAGE="busybox"
4 VERSION="1.10.1"
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 cd $PACKAGE-$VERSION
18 while read file; do
19 patch -p1 < ../stuff/$file || return 1
20 done <<EOT
21 $PACKAGE-$VERSION-patch.u
22 $PACKAGE-$VERSION-vcsa2txt.u
23 $PACKAGE-$VERSION-cpio.u
24 $PACKAGE-$VERSION-dhcpc.u
25 $PACKAGE-$VERSION-cpio-mkdir.u
26 $PACKAGE-$VERSION-cpio-mtime.u
27 $PACKAGE-$VERSION-unlzma.u
28 $PACKAGE-$VERSION-tftp.u
29 $PACKAGE-$VERSION-tar.u
30 $PACKAGE-$VERSION-script.u
31 $PACKAGE-$VERSION-header_tar.u
32 $PACKAGE-$VERSION-fixes-$VERSION.u
33 $PACKAGE-$VERSION-stat.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 cd $fs
58 rm linuxrc
59 ln -s bin/busybox init
60 cd $WOK/$PACKAGE
61 # Udhcpc stuff.
62 mkdir -p $fs/usr/share/udhcpc
63 cp $src/examples/udhcp/simple.script \
64 $fs/usr/share/udhcpc/default.script
65 chmod +x $fs/usr/share/udhcpc/default.script
66 }
68 # Force glibc-2.7 reinstall if 2.3.6 still in use.
69 pre_install()
70 {
71 if grep -q 'VERSION="2.3.6"' /var/lib/tazpkg/installed/glibc-base/receipt; then
72 tazpkg get-install glibc-base --forced
73 fi
74 }