1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-24 12:48:34 +00:00
morpheus/pkgs/sinit
2014-02-05 17:32:33 +00:00

14 lines
163 B
Plaintext

fetch() {
cp $top/stuff/sinit.c src
}
build() {
pushd src
x86_64-linux-musl-gcc -o init sinit.c -static || return 1
popd
}
install() {
cp src/init $root/
}