void-packages/srcpkgs/toybox/template
2016-02-02 19:50:13 -05:00

44 lines
926 B
Bash

# Template file for 'toybox'
pkgname=toybox
version=0.7.0
revision=1
short_desc="A BSD-licensed alternative to busybox"
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
license="BSD"
homepage="http://www.landley.net/toybox"
distfiles="${homepage}/downloads/${pkgname}-${version}.tar.gz"
checksum=65428816f88ad3fe92b67df86dc05427c8078fe03843b8b9715fdfa6d29c0f97
post_extract() {
mkdir toybox
mv * toybox || true
cp -a toybox toybox-static
}
do_build() {
# toybox
cd ${wrksrc}/toybox
make defconfig
rm -f ${XBPS_WRAPPERDIR}/strip
make ${makejobs} toybox
# toybox-static
cd ${wrksrc}/toybox-static
make defconfig
make ${makejobs} LDFLAGS="--static" toybox
}
do_install() {
vbin toybox/toybox_unstripped toybox
vlicense toybox/LICENSE
}
toybox-static_package() {
short_desc+=" - statically linked"
pkg_install() {
vbin toybox-static/toybox_unstripped toybox.static
vlicense toybox-static/LICENSE
}
}