void-packages/srcpkgs/busybox/template
2012-04-05 16:48:22 +02:00

33 lines
1.1 KiB
Plaintext

# Build template for 'busybox'.
pkgname=busybox
version=1.19.4
homepage="http://www.busybox.net"
distfiles="${homepage}/downloads/busybox-$version.tar.bz2"
short_desc="The Swiss Army Knife of Embedded Linux"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
checksum=9b853406da61ffb59eb488495fe99cbb7fb3dd29a31307fcfa9cf070543710ee
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."
Add_dependency build perl ">=0"
do_build() {
cp -f ${FILESDIR}/dotconfig .config
make ${makejobs}
}
do_install() {
vinstall busybox 755 bin
vinstall docs/busybox.1 644 usr/share/man/man1
# Create /usr/bin/vi symlink for base.
vmkdir usr/bin
cd ${DESTDIR}/usr/bin && ln -sf ../../bin/busybox vi
}