1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-27 11:58:34 +00:00
morpheus/pkgs/smdev

16 lines
215 B
Plaintext
Raw Normal View History

2013-09-05 10:59:49 +00:00
url=git://git.2f30.org/$pkg
# Fetch package
git clone $url src/$pkg
# Build package
pushd src/$pkg
2013-09-05 11:30:49 +00:00
make clean
2013-09-05 10:59:49 +00:00
make CC=musl-gcc LDFLAGS=-static
popd
# Install package
pushd src/$pkg
make PREFIX=$root install
popd