blob: a3e36a790069d733ed9b1606f1fa254d25adb074 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
DESC="toybox coreutils statically linked into one executable"
build () {
make CFLAGS="$CFLAGS -static" toybox-box
}
package () {
make DESTDIR="$PKG_DEST" toybox-box-install
}
|