1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-28 23:31:20 +00:00
morpheus/pkgs/sbase

19 lines
270 B
Plaintext
Raw Normal View History

2013-09-06 08:31:51 +00:00
url=git://git.2f30.org/sbase
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
fetch() {
2013-09-26 19:56:25 +00:00
[ -d src/sbase ] || git clone $url src/sbase
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/sbase
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/sbase
make PREFIX=$root install
popd
}