busybox: removed busybox-ntpd from template

This commit is contained in:
Andrea Brancaleoni 2015-06-25 16:51:36 +02:00
parent 4ca121e013
commit 80e1cc6778

View file

@ -1,7 +1,7 @@
# Build template for 'busybox'. # Build template for 'busybox'.
pkgname=busybox pkgname=busybox
version=1.23.2 version=1.23.2
revision=1 revision=2
hostmakedepends="perl" hostmakedepends="perl"
short_desc="The Swiss Army Knife of Embedded Linux" short_desc="The Swiss Army Knife of Embedded Linux"
maintainer="Juan RP <xtraeme@voidlinux.eu>" maintainer="Juan RP <xtraeme@voidlinux.eu>"
@ -24,7 +24,7 @@ pre_build() {
mv * src || true mv * src || true
local t local t
for t in busybox busybox-static busybox-ntpd; do for t in busybox busybox-static; do
mkdir -p $t mkdir -p $t
make -C $t CFLAGS="$(_cflags $t)" KBUILD_SRC=${wrksrc}/src \ make -C $t CFLAGS="$(_cflags $t)" KBUILD_SRC=${wrksrc}/src \
-f ${wrksrc}/src/Makefile defconfig -f ${wrksrc}/src/Makefile defconfig
@ -45,7 +45,7 @@ pre_build() {
} }
do_build() { do_build() {
local t local t
for t in busybox busybox-static busybox-ntpd; do for t in busybox busybox-static; do
make -C $t SKIP_STRIP=y CFLAGS="$(_cflags $t)" ${makejobs} make -C $t SKIP_STRIP=y CFLAGS="$(_cflags $t)" ${makejobs}
done done
} }
@ -60,11 +60,3 @@ busybox-static_package() {
vbin busybox-static/busybox busybox.static vbin busybox-static/busybox busybox.static
} }
} }
busybox-ntpd_package() {
short_desc+=" (ntpd)"
pkg_install() {
vbin busybox-ntpd/busybox_unstripped busybox-ntpd
vsv busybox-ntpd
}
}