1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-25 06:18:33 +00:00
morpheus/pkgs/busybox
2013-09-05 13:50:27 +01:00

17 lines
227 B
Plaintext

url=$mirror/$pkg
# Fetch package
wget -c $url -O src/$pkg
# Install package
pushd src/
chmod +x $pkg
cp $pkg $root/bin
pushd $root/bin
ln -s busybox ifconfig
ln -s busybox nc
ln -s busybox getty
ln -s busybox login
popd
popd