2011-02-11 15:27:15 +00:00
|
|
|
# Build template for 'busybox'.
|
|
|
|
pkgname=busybox
|
2011-05-25 09:20:18 +00:00
|
|
|
version=1.18.4
|
2011-05-25 09:51:23 +00:00
|
|
|
revision=2
|
2009-01-30 00:28:50 +00:00
|
|
|
distfiles="http://www.busybox.net/downloads/busybox-$version.tar.bz2"
|
2011-01-26 12:08:33 +00:00
|
|
|
build_style=custom-install
|
2011-02-11 15:27:15 +00:00
|
|
|
short_desc="The Swiss Army Knife of Embedded Linux"
|
2009-01-30 00:28:50 +00:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-05-25 09:20:18 +00:00
|
|
|
checksum=4d24d37bd6f1bd153e8cf9a984ec2f32f18464f73ca535e2cc2e8be9694097fa
|
2009-01-30 00:28:50 +00:00
|
|
|
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
|
2011-02-11 15:27:15 +00:00
|
|
|
environment for any small or embedded system."
|
2009-01-30 00:28:50 +00:00
|
|
|
|
2009-10-29 21:10:46 +00:00
|
|
|
base_chroot=yes
|
2011-02-11 15:27:15 +00:00
|
|
|
replaces="busybox-initramfs>=0"
|
2010-01-15 01:28:51 +00:00
|
|
|
Add_dependency run glibc
|
2009-01-30 00:28:50 +00:00
|
|
|
|
2011-01-26 12:08:33 +00:00
|
|
|
do_build()
|
2009-01-30 00:28:50 +00:00
|
|
|
{
|
2011-02-11 15:27:15 +00:00
|
|
|
cp -f ${FILESDIR}/dotconfig .config
|
2011-01-26 12:08:33 +00:00
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
2011-02-11 16:07:32 +00:00
|
|
|
install -D -m755 busybox ${DESTDIR}/bin/busybox
|
2009-01-30 00:28:50 +00:00
|
|
|
}
|