1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-30 22:11:20 +00:00
morpheus/pkgs/sdhcp
2013-09-05 11:59:49 +01:00

19 lines
242 B
Plaintext

file=$pkg.tar.gz
url=$mirror/$file
# Fetch package
wget -c $url -O src/$file
# Unpack package
pushd src
tar xzf $file
popd
# Build package
pushd src/$pkg
make CC=musl-gcc LDFLAGS=-static
popd
# Install package
cp src/$pkg/sdhcp $root/bin