void-packages/srcpkgs/toybox/template
2016-06-02 21:59:19 -04:00

44 lines
897 B
Bash

# Template file for 'toybox'
pkgname=toybox
version=0.7.1
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=5bb3069f58faf12940d5cfde3209ac7f63210bebdd9023979b0c20cede126ea7
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
vlicense toybox/LICENSE
}
toybox-static_package() {
short_desc+=" - statically linked"
pkg_install() {
vbin toybox-static/toybox toybox.static
vlicense toybox-static/LICENSE
}
}