35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
# Build template for 'busybox'.
|
|
pkgname=busybox
|
|
version=1.18.4
|
|
revision=3
|
|
distfiles="http://www.busybox.net/downloads/busybox-$version.tar.bz2"
|
|
build_style=custom-install
|
|
short_desc="The Swiss Army Knife of Embedded Linux"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum=4d24d37bd6f1bd153e8cf9a984ec2f32f18464f73ca535e2cc2e8be9694097fa
|
|
long_desc="
|
|
BusyBox combines tiny versions of many common UNIX utilities into a single
|
|
small executable. It provides replacements for most of the utilities you
|
|
usually find in GNU fileutils, shellutils, etc. The utilities in BusyBox
|
|
generally have fewer options than their full-featured GNU cousins; however,
|
|
the options that are included provide the expected functionality and behave
|
|
very much like their GNU counterparts. BusyBox provides a fairly complete
|
|
environment for any small or embedded system."
|
|
|
|
bootstrap=yes
|
|
replaces="busybox-initramfs>=0"
|
|
Add_dependency run glibc
|
|
if [ -n "$BOOTSTRAP_PKG_REBUILD" ]; then
|
|
Add_dependency build coreutils
|
|
fi
|
|
|
|
do_build()
|
|
{
|
|
cp -f ${FILESDIR}/dotconfig .config
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install()
|
|
{
|
|
install -D -m755 busybox ${DESTDIR}/bin/busybox
|
|
}
|