1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-07-08 05:23:29 +00:00
morpheus/pkgs/sic

23 lines
279 B
Plaintext
Raw Normal View History

2013-09-06 08:31:51 +00:00
url=$mirror/sic.tar.gz
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
fetch() {
wget -c $url -O src/sic.tar.gz
}
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
unpack() {
pushd src
[ -d sic ] || tar xzf sic.tar.gz
popd
}
2013-09-05 10:59:49 +00:00
2013-09-06 08:31:51 +00:00
build() {
pushd src/sic
make clean
make 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() {
cp src/sic/sic $root/bin
}