# $Id$ # Maintainer: Sergej Pupykin # Contributor: Jens Pranaitis # ALARM: Kevin Mihelich # - don't build with musl-gcc pkgname=busybox pkgver=1.23.1 pkgrel=3.1 pkgdesc="Utilities for rescue and embedded systems" arch=("i686" "x86_64") url="http://www.busybox.net" license=('GPL') makedepends=("make" "gcc" "sed" "ncurses") install=busybox.install source=("$url/downloads/$pkgname-$pkgver.tar.bz2" "config" ifplugd.patch) md5sums=('5c94d6301a964cd91619bd4d74605245' '71c99d75dda156dab162dece3bd424a5' '187adc8319e45be12d79e8db2c514d74') prepare() { cd "$srcdir/$pkgname-$pkgver" patch -p1 <$srcdir/ifplugd.patch } build() { cd "$srcdir/$pkgname-$pkgver" cp $srcdir/config .config sed '1,1i#include ' -i include/libbb.h # if you want to run menuconfig uncomment the following line: # make menuconfig ; return 1 make } package() { cd "$srcdir/$pkgname-$pkgver" install -Dm755 busybox $pkgdir/usr/bin/busybox }