# $Id: PKGBUILD 38368 2011-01-26 10:25:20Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Jens Pranaitis pkgname=busybox pkgver=1.18.2 pkgrel=1 pkgdesc="Utilities for rescue and embedded systems" arch=("i686" "x86_64") url="http://busybox.net" license=('GPL') makedepends=("make" "gcc" "sed" "ncurses") options=() source=($url/downloads/$pkgname-$pkgver.tar.bz2 config) md5sums=('69a82091e5710b72db5ce0e14e7c0cd7' '10356174db56da484eb8c43c90aee7b7') build() { cd "$srcdir/$pkgname-$pkgver" cp $srcdir/config .config # if you want to run menuconfig uncomment the following line: # make menuconfig ; return 1 make mkdir $pkgdir/bin install -m755 busybox $pkgdir/bin/ }