1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-25 23:58:33 +00:00
morpheus/pkgs/ubase
2013-09-05 11:59:49 +01:00

15 lines
204 B
Plaintext

url=git://git.2f30.org/$pkg
# Fetch package
git clone $url src/$pkg
# Build package
pushd src/$pkg
make CC=musl-gcc LDFLAGS=-static
popd
# Install package
pushd src/$pkg
make PREFIX=$root install
popd