1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-16 14:38:33 +00:00
morpheus/pkgs/syslinux
2013-09-16 14:36:12 +01:00

17 lines
214 B
Plaintext

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