busybox-initramfs: update to 1.18.2.
This commit is contained in:
parent
4ca38169f5
commit
c050445077
1 changed files with 10 additions and 8 deletions
|
@ -1,14 +1,12 @@
|
||||||
# Build template for 'busybox-initramfs'.
|
# Build template for 'busybox-initramfs'.
|
||||||
pkgname=busybox-initramfs
|
pkgname=busybox-initramfs
|
||||||
version=1.18.0
|
version=1.18.2
|
||||||
wrksrc=busybox-$version
|
wrksrc=busybox-$version
|
||||||
distfiles="http://www.busybox.net/downloads/busybox-$version.tar.bz2"
|
distfiles="http://www.busybox.net/downloads/busybox-$version.tar.bz2"
|
||||||
build_style=gnu_makefile
|
build_style=custom-install
|
||||||
make_install_args="
|
|
||||||
CONFIG_PREFIX=${XBPS_DESTDIR}/${pkgname}-${version}/usr/lib/${pkgname}"
|
|
||||||
short_desc="The Swiss Army Knife of Embedded Linux for initial ramdisks"
|
short_desc="The Swiss Army Knife of Embedded Linux for initial ramdisks"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
checksum=3a9d5e6929045440ec3d0c9987376cbbb78e98886d6c5fa58fc2306d2662eb00
|
checksum=aa7e1cec8cd9c7f4e56098b9e4bb2ab5d593d5a35f766ad9e6a312289bf57080
|
||||||
long_desc="
|
long_desc="
|
||||||
BusyBox combines tiny versions of many common UNIX utilities into a single
|
BusyBox combines tiny versions of many common UNIX utilities into a single
|
||||||
small executable. It provides replacements for most of the utilities you
|
small executable. It provides replacements for most of the utilities you
|
||||||
|
@ -23,9 +21,13 @@ long_desc="
|
||||||
base_chroot=yes
|
base_chroot=yes
|
||||||
Add_dependency run glibc
|
Add_dependency run glibc
|
||||||
|
|
||||||
pre_build()
|
do_build()
|
||||||
{
|
{
|
||||||
cp -f ${FILESDIR}/dotconfig ${wrksrc}/.config
|
cp -f ${FILESDIR}/dotconfig ${wrksrc}/.config
|
||||||
# gen_build_files.sh doesn't work with dash, so force GNU bash!
|
make ${makejobs}
|
||||||
sed -i -e "s/^#!\/bin\/sh$/#!\/bin\/bash/" ${wrksrc}/scripts/gen_build_files.sh
|
}
|
||||||
|
|
||||||
|
do_install()
|
||||||
|
{
|
||||||
|
make CONFIG_PREFIX=${DESTDIR}/usr/lib/${pkgname} install
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue