# Maintainer: Natanael Copa pkgname=busybox pkgver=1.17.2 pkgrel=0 pkgdesc="Size optimized toolbox of many common UNIX utilities" url=http://busybox.net license="GPL-2" depends= install="$pkgname.post-install $pkgname.post-upgrade" subpackages="$pkgname-static" triggers="busybox.trigger:/bin /usr/bin /sbin /usr/sbin /lib/modules/*" source="http://busybox.net/downloads/$pkgname-$pkgver.tar.bz2 http://busybox.net/downloads/fixes-1.17.2/busybox-1.17.2-compat.patch http://busybox.net/downloads/fixes-1.17.2/busybox-1.17.2-hush.patch http://busybox.net/downloads/fixes-1.17.2/busybox-1.17.2-lineedit.patch $pkgname-1.11.1-bb.patch busyboxconfig" _builddir="$srcdir"/$pkgname-$pkgver _config="$srcdir"/busyboxconfig prepare() { cd "$_builddir" #patches for i in ../*.patch; do msg "Applying $i" if ! patch -p1 -i $i; then error "$i failed" return 1 fi done sed -i -e 's/(ip, _BB_DIR_BIN/(ip, _BB_DIR_SBIN/' \ -e 's/(lspci, _BB_DIR_USR_BIN/(lspci, _BB_DIR_USR_SBIN/' \ -e 's/(vi, _BB_DIR_BIN/(vi, _BB_DIR_USR_BIN/' \ include/applets.src.h || return 1 } build() { cd "$_builddir" msg "Building static busybox" sed -e "s/.*CONFIG_PIE.*/\# CONFIG_PIE is not set/" \ -e "s/.*CONFIG_STATIC.*/CONFIG_STATIC=y/" \ "$_config" > .config make silentoldconfig || return 1 make || return 1 mv busybox busybox.static # build dynamic msg "Building dynamic busybox" cp "$_config" .config make silentoldconfig || return 1 make || return 1 } package() { cd "$_builddir" mkdir -p "$pkgdir"/usr/sbin "$pkgdir"/usr/bin "$pkgdir"/tmp \ "$pkgdir"/var/cache/misc "$pkgdir"/bin "$pkgdir"/sbin chmod 1777 "$pkgdir"/tmp install -m755 busybox "$pkgdir"/bin/busybox # we need /bin/sh to be able to execute post-install ln -s /bin/busybox "$pkgdir"/bin/sh } static() { triggers= mkdir -p "$subpkgdir"/bin install -m755 "$_builddir"/busybox.static \ "$subpkgdir"/bin/busybox.static } md5sums="7360b7138b899ee7fc885791c740c3c3 busybox-1.17.2.tar.bz2 e609fd0c92ec9c331ab2aaf01788c10f busybox-1.17.2-compat.patch 9d52cff20b61a65a935b1801b00d2afd busybox-1.17.2-hush.patch 88a60a90c000e1ee3f70d7f04acc85a2 busybox-1.17.2-lineedit.patch 4c0f3b486eaa0674961b7ddcd0c60a9b busybox-1.11.1-bb.patch 403e0b9fe99a7a18c5b9ae91283a5f9a busyboxconfig"