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