1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-25 22:38:32 +00:00
morpheus/pkgs/syslinux
sin 5ffd49a86d We can build with dash too now
Also rename pkgs/arch-rootfs to pkgs/emul.

The create-bootable script still needs to be fixed
to work with dash.
2014-02-14 10:58:17 +00:00

17 lines
211 B
Plaintext

url=$mirror/syslinux.tar.gz
fetch() {
# Fetch package
wget -c $url -O src/syslinux.tar.gz
}
unpack() {
cd src
[ -d syslinux ] || tar xzf syslinux.tar.gz
cd -
}
install() {
cp -r src/syslinux/* $root/
}