2011-02-11 15:27:15 +00:00
|
|
|
# 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
|
2013-04-12 06:55:23 +00:00
|
|
|
hostmakedepends="perl"
|
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-07-09 15:15:47 +00:00
|
|
|
homepage="http://www.busybox.net"
|
|
|
|
distfiles="${homepage}/downloads/busybox-$version.tar.bz2"
|
2014-02-10 11:02:28 +00:00
|
|
|
checksum=ae0b029d0a9e4dd71a077a790840e496dd838998e4571b87b60fed7462b6678b
|
2009-01-30 00:28:50 +00:00
|
|
|
|
2015-01-07 07:11:21 +00:00
|
|
|
_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() {
|
2015-01-07 07:11:21 +00:00
|
|
|
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
|
2015-01-07 07:11:21 +00:00
|
|
|
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() {
|
2015-01-07 07:11:21 +00:00
|
|
|
local t
|
2015-01-07 07:16:58 +00:00
|
|
|
for t in busybox busybox-static busybox-ntpd; do
|
2015-01-07 07:11:21 +00:00
|
|
|
make -C $t CFLAGS="$(_cflags $t)" ${makejobs}
|
|
|
|
done
|
2011-01-26 12:08:33 +00:00
|
|
|
}
|
2012-01-29 10:05:17 +00:00
|
|
|
do_install() {
|
2015-01-07 09:20:19 +00:00
|
|
|
vbin busybox/busybox_unstripped
|
2015-01-07 07:11:21 +00:00
|
|
|
vman busybox/docs/busybox.1
|
|
|
|
}
|
|
|
|
|
|
|
|
busybox-static_package() {
|
|
|
|
short_desc+=" (statically linked)"
|
|
|
|
pkg_install() {
|
|
|
|
vbin busybox-static/busybox busybox.static
|
|
|
|
}
|
2009-01-30 00:28:50 +00:00
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
}
|