PKGBUILDs/community/busybox/PKGBUILD
2015-03-23 11:30:00 +00:00

42 lines
1 KiB
Bash

# $Id$
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jens Pranaitis <jens@jenux.homelinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - don't build with musl-gcc
pkgname=busybox
pkgver=1.23.2
pkgrel=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=('7925683d7dd105aabe9b6b618d48cc73'
'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 <sys/resource.h>' -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
}