2011-02-11 16:27:15 +01:00
|
|
|
# Build template for 'busybox'.
|
|
|
|
pkgname=busybox
|
2015-12-19 09:59:56 +01:00
|
|
|
version=1.24.1
|
|
|
|
revision=1
|
2013-04-12 08:55:23 +02:00
|
|
|
hostmakedepends="perl"
|
2011-02-11 16:27:15 +01:00
|
|
|
short_desc="The Swiss Army Knife of Embedded Linux"
|
2015-04-10 09:16:30 +02:00
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
2011-07-10 22:59:19 +02:00
|
|
|
license="GPL-2"
|
2012-07-09 17:15:47 +02:00
|
|
|
homepage="http://www.busybox.net"
|
|
|
|
distfiles="${homepage}/downloads/busybox-$version.tar.bz2"
|
2015-12-19 09:59:56 +01:00
|
|
|
checksum=37d03132cc078937360b392170b7a1d0e5b322eee9f57c0b82292a8b1f0afe3d
|
2009-01-30 01:28:50 +01:00
|
|
|
|
2015-01-07 08:11:21 +01:00
|
|
|
_cflags() {
|
|
|
|
local t=$1
|
|
|
|
local c="$CFLAGS"
|
|
|
|
case $t in
|
|
|
|
busybox-static) c="$c -static";;
|
|
|
|
esac
|
|
|
|
echo "$c"
|
|
|
|
}
|
|
|
|
|
2014-02-10 12:02:28 +01:00
|
|
|
pre_build() {
|
2015-01-07 08:11:21 +01:00
|
|
|
mkdir -p src
|
|
|
|
mv * src || true
|
|
|
|
|
|
|
|
local t
|
2015-06-25 16:51:36 +02:00
|
|
|
for t in busybox busybox-static; do
|
2015-01-07 08:11:21 +01: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
|
2015-06-25 16:51:36 +02:00
|
|
|
|
2015-06-14 16:13:32 +02:00
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
|
|
*-musl) sed -i -e /CONFIG_FEATURE_VI_REGEX_SEARCH/s/y/n/ \
|
|
|
|
-e /CONFIG_FEATURE_MOUNT_NFS/s/y/n/ \
|
|
|
|
${t}/.config;;
|
|
|
|
esac
|
2015-01-07 08:11:21 +01:00
|
|
|
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
|
|
sed -e \
|
|
|
|
"s,\(CONFIG_CROSS_COMPILER_PREFIX\).*,\1=\"${XBPS_CROSS_TRIPLET}-\",g" \
|
|
|
|
-i ${t}/.config
|
|
|
|
fi
|
2015-12-19 09:59:56 +01:00
|
|
|
#make -C $t oldconfig
|
2015-01-07 08:11:21 +01:00
|
|
|
done
|
2014-02-10 12:02:28 +01:00
|
|
|
}
|
|
|
|
do_build() {
|
2015-01-07 08:11:21 +01:00
|
|
|
local t
|
2015-06-25 16:51:36 +02:00
|
|
|
for t in busybox busybox-static; do
|
2015-05-05 09:26:47 +02:00
|
|
|
make -C $t SKIP_STRIP=y CFLAGS="$(_cflags $t)" ${makejobs}
|
2015-01-07 08:11:21 +01:00
|
|
|
done
|
2011-01-26 13:08:33 +01:00
|
|
|
}
|
2012-01-29 11:05:17 +01:00
|
|
|
do_install() {
|
2015-05-05 09:08:52 +02:00
|
|
|
vbin busybox/busybox_unstripped busybox
|
2015-01-07 08:11:21 +01:00
|
|
|
vman busybox/docs/busybox.1
|
|
|
|
}
|
|
|
|
|
|
|
|
busybox-static_package() {
|
|
|
|
short_desc+=" (statically linked)"
|
|
|
|
pkg_install() {
|
|
|
|
vbin busybox-static/busybox busybox.static
|
|
|
|
}
|
2009-01-30 01:28:50 +01:00
|
|
|
}
|