27 lines
681 B
Text
27 lines
681 B
Text
# Build template for 'busybox'.
|
|
pkgname=busybox
|
|
version=1.22.1
|
|
revision=1
|
|
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=ae0b029d0a9e4dd71a077a790840e496dd838998e4571b87b60fed7462b6678b
|
|
|
|
pre_build() {
|
|
cp -f ${FILESDIR}/dotconfig .config
|
|
if [ "$CROSS_BUILD" ]; then
|
|
sed -e "s,\(CONFIG_CROSS_COMPILER_PREFIX\).*,\1=\"${XBPS_CROSS_TRIPLET}-\",g" -i .config
|
|
fi
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
vinstall busybox 755 usr/bin
|
|
vinstall docs/busybox.1 644 usr/share/man/man1
|
|
}
|