1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-20 13:48:33 +00:00
morpheus/pkgs/ubase

19 lines
270 B
Plaintext

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