1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-30 21:51:22 +00:00
morpheus/pkgs/sic

23 lines
254 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=musl-gcc LDFLAGS=-static
popd
}
install() {
cp src/sic/sic $root/bin
}