1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-16 11:38:34 +00:00
morpheus/pkgs/sic

23 lines
279 B
Plaintext

url=$mirror/sic.tar.gz
fetch() {
wget -c $url -O src/sic.tar.gz
}
unpack() {
pushd src
[ -d sic ] || tar xzf sic.tar.gz
popd
}
build() {
pushd src/sic
make clean
make CC=x86_64-linux-musl-gcc LDFLAGS=-static || return 1
popd
}
install() {
cp src/sic/sic $root/bin
}