# $Id: PKGBUILD 85655 2013-03-04 13:07:52Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Jens Pranaitis pkgname=busybox pkgver=1.20.2 pkgrel=2 pkgdesc="Utilities for rescue and embedded systems" arch=("i686" "x86_64" 'mips64el') url="http://www.busybox.net" license=('GPL') makedepends=("make" "gcc" "sed" "ncurses") source=($url/downloads/$pkgname-$pkgver.tar.bz2 config) install=busybox.install md5sums=('e025414bc6cd79579cc7a32a45d3ae1c' '09d4562ee4a9ab5415be44b945bfc7e2') 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/bin/busybox }