1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-24 13:28:34 +00:00
morpheus/pkgs/smdev
2013-09-05 12:30:49 +01:00

16 lines
215 B
Plaintext

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