1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-07-01 02:41:21 +00:00
morpheus/pkgs/ubase
2013-09-17 15:40:13 +01:00

19 lines
237 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 || return 1
popd
}
install() {
pushd src/ubase
make PREFIX=$root install
popd
}