void-packages/srcpkgs/busybox/template

65 lines
1.4 KiB
Text
Raw Normal View History

# Build template for 'busybox'.
pkgname=busybox
2014-02-10 11:02:28 +00:00
version=1.22.1
2015-01-07 09:20:19 +00:00
revision=5
hostmakedepends="perl"
short_desc="The Swiss Army Knife of Embedded Linux"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-07-10 20:59:19 +00:00
license="GPL-2"
homepage="http://www.busybox.net"
distfiles="${homepage}/downloads/busybox-$version.tar.bz2"
2014-02-10 11:02:28 +00:00
checksum=ae0b029d0a9e4dd71a077a790840e496dd838998e4571b87b60fed7462b6678b
_cflags() {
local t=$1
local c="$CFLAGS"
case $t in
busybox-static) c="$c -static";;
esac
echo "$c"
}
2014-02-10 11:02:28 +00:00
pre_build() {
mkdir -p src
mv * src || true
local t
2015-01-07 07:16:58 +00:00
for t in busybox busybox-static busybox-ntpd; do
mkdir -p $t
make -C $t CFLAGS="$(_cflags $t)" KBUILD_SRC=${wrksrc}/src \
-f ${wrksrc}/src/Makefile defconfig
cp -f ${FILESDIR}/${t}.dotconfig ${t}/.config
if [ "$CROSS_BUILD" ]; then
sed -e \
"s,\(CONFIG_CROSS_COMPILER_PREFIX\).*,\1=\"${XBPS_CROSS_TRIPLET}-\",g" \
-i ${t}/.config
fi
done
2014-02-10 11:02:28 +00:00
}
do_build() {
local t
2015-01-07 07:16:58 +00:00
for t in busybox busybox-static busybox-ntpd; do
make -C $t CFLAGS="$(_cflags $t)" ${makejobs}
done
2011-01-26 12:08:33 +00:00
}
do_install() {
2015-01-07 09:20:19 +00:00
vbin busybox/busybox_unstripped
vman busybox/docs/busybox.1
}
busybox-static_package() {
short_desc+=" (statically linked)"
pkg_install() {
vbin busybox-static/busybox busybox.static
}
}
2015-01-07 07:16:58 +00:00
busybox-ntpd_package() {
short_desc+=" (ntpd)"
pkg_install() {
2015-01-07 09:20:19 +00:00
vbin busybox-ntpd/busybox_unstripped busybox-ntpd
2015-01-07 07:16:58 +00:00
vsv busybox-ntpd
}
}