1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-25 23:28:34 +00:00
morpheus/pkgs/ubase
2013-09-06 10:53:51 +01:00

19 lines
225 B
Plaintext

url=git://git.2f30.org/ubase
fetch() {
git clone $url src/ubase
}
build() {
pushd src/ubase
make clean
make -j$nprocs CC=musl-gcc LDFLAGS=-static
popd
}
install() {
pushd src/ubase
make PREFIX=$root install
popd
}