1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-25 22:28:34 +00:00
morpheus/pkgs/syslinux

17 lines
211 B
Plaintext
Raw Normal View History

2013-09-16 12:49:58 +00:00
url=$mirror/syslinux.tar.gz
fetch() {
# Fetch package
wget -c $url -O src/syslinux.tar.gz
}
unpack() {
cd src
2013-09-16 12:49:58 +00:00
[ -d syslinux ] || tar xzf syslinux.tar.gz
cd -
2013-09-16 12:49:58 +00:00
}
install() {
cp -r src/syslinux/* $root/
}