# Build template for 'busybox'.
pkgname=busybox
version=1.20.2
revision=2
hostmakedepends="perl"
short_desc="The Swiss Army Knife of Embedded Linux"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
homepage="http://www.busybox.net"
distfiles="${homepage}/downloads/busybox-$version.tar.bz2"
checksum=eb13ff01dae5618ead2ef6f92ba879e9e0390f9583bd545d8789d27cf39b6882
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."

do_build() {
	cp -f ${FILESDIR}/dotconfig .config
	make ${makejobs}
}

do_install() {
	vinstall busybox 755 usr/bin
	vinstall docs/busybox.1 644 usr/share/man/man1
}

busybox_package() {
	pkg_install() {
		vmove usr
	}
}