PKGBUILDs/community/busybox/PKGBUILD

39 lines
1.1 KiB
Bash
Raw Normal View History

2015-03-15 16:55:07 +00:00
# $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
2017-01-11 19:44:15 +00:00
pkgver=1.26.2
2016-10-10 12:38:24 +00:00
pkgrel=1
2015-03-15 16:55:07 +00:00
pkgdesc="Utilities for rescue and embedded systems"
arch=("i686" "x86_64")
2017-01-05 14:34:24 +00:00
url="https://www.busybox.net"
2015-03-15 16:55:07 +00:00
license=('GPL')
makedepends=("make" "gcc" "sed" "ncurses")
install=busybox.install
source=("$url/downloads/$pkgname-$pkgver.tar.bz2"
2016-08-15 12:24:59 +00:00
"config")
2017-01-11 19:44:15 +00:00
sha256sums=('da3e44913fc1a9c9b7c5337ea5292da518683cbff32be630777f565d6036af16'
2017-01-05 14:34:24 +00:00
'ee3f947d8194a85b0adc150db8000d09c3fc31827ab259954a2c1ea9e646df6c')
2015-03-15 16:55:07 +00:00
build() {
cd "$srcdir/$pkgname-$pkgver"
2017-01-05 14:34:24 +00:00
cp "$srcdir"/config .config
2015-03-15 16:55:07 +00:00
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"
2017-01-05 14:34:24 +00:00
install -Dm755 busybox "$pkgdir"/usr/bin/busybox
install -Dm644 docs/busybox.1 "$pkgdir"/usr/share/man/man1/busybox.1
2016-08-15 12:24:59 +00:00
for doc in BusyBox.html BusyBox.txt; do
2017-01-05 14:34:24 +00:00
install -Dm644 docs/$doc "$pkgdir"/usr/share/doc/$pkgname/$doc
2016-08-15 12:24:59 +00:00
done
2015-03-15 16:55:07 +00:00
}