void-packages/srcpkgs/toybox/template
2017-06-28 15:53:40 +02:00

45 lines
877 B
Bash

# Template file for 'toybox'
pkgname=toybox
version=0.7.4
revision=1
create_wrksrc=yes
short_desc="BSD-licensed alternative to busybox"
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
license="0BSD"
homepage="http://www.landley.net/toybox"
distfiles="${homepage}/downloads/${pkgname}-${version}.tar.gz"
checksum=49d74ca897501e5c981516719870fe08581726f5c018abe35ef52c6f0de113e7
post_extract() {
mv toybox-${version} toybox
cp -r toybox toybox-static
}
do_build() {
export NOSTRIP=1
# toybox
cd toybox
make defconfig
make ${makejobs} toybox
# toybox-static
cd ../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
}
}