2011-02-11 15:27:15 +00:00
|
|
|
# Build template for 'busybox'.
|
|
|
|
pkgname=busybox
|
2012-06-02 08:31:29 +00:00
|
|
|
version=1.20.1
|
2011-07-10 20:59:19 +00:00
|
|
|
homepage="http://www.busybox.net"
|
|
|
|
distfiles="${homepage}/downloads/busybox-$version.tar.bz2"
|
2012-06-02 08:31:29 +00:00
|
|
|
makedepends="perl"
|
2012-06-03 07:08:53 +00:00
|
|
|
revision=1
|
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-07-10 20:59:19 +00:00
|
|
|
license="GPL-2"
|
2012-06-02 08:31:29 +00:00
|
|
|
checksum=3e515d8abefd8583ebabffdcfccecb3b8deacf2cef7c69ab1d8755a012ec68c9
|
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
|
|
|
|
2012-01-29 10:05:17 +00:00
|
|
|
do_build() {
|
2011-02-11 15:27:15 +00:00
|
|
|
cp -f ${FILESDIR}/dotconfig .config
|
2011-01-26 12:08:33 +00:00
|
|
|
make ${makejobs}
|
|
|
|
}
|
|
|
|
|
2012-01-29 10:05:17 +00:00
|
|
|
do_install() {
|
2011-07-10 20:59:19 +00:00
|
|
|
vinstall busybox 755 bin
|
2011-10-12 18:59:33 +00:00
|
|
|
vinstall docs/busybox.1 644 usr/share/man/man1
|
2011-10-21 15:40:13 +00:00
|
|
|
# Create /usr/bin/vi symlink for base.
|
|
|
|
vmkdir usr/bin
|
|
|
|
cd ${DESTDIR}/usr/bin && ln -sf ../../bin/busybox vi
|
2009-01-30 00:28:50 +00:00
|
|
|
}
|