1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-27 08:28:34 +00:00
morpheus/pkgs/ubase

19 lines
270 B
Plaintext
Raw Normal View History

2013-09-06 08:31:51 +00:00
url=git://git.2f30.org/ubase
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
fetch() {
2013-09-18 13:33:23 +00:00
[ -d src/ubase ] || git clone $url src/ubase
2013-09-06 08:31:51 +00:00
}
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
build() {
pushd src/ubase
make clean
make -j$nprocs CC=x86_64-linux-musl-gcc LDFLAGS=-static || return 1
2013-09-06 08:31:51 +00:00
popd
}
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
install() {
pushd src/ubase
make PREFIX=$root install
popd
}