52 lines
964 B
Bash
52 lines
964 B
Bash
# Template file for 'toybox'
|
|
pkgname=toybox
|
|
version=0.8.1
|
|
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="http://www.landley.net/toybox/downloads/toybox-${version}.tar.gz"
|
|
checksum=1ac41e62b809d2ab656479f7f4e20bb71c63c14473f5c7d13f25d4f7fcfefdb3
|
|
|
|
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_check() {
|
|
cd toybox
|
|
make tests
|
|
|
|
cd ../toybox-static
|
|
make tests
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
|