1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-28 18:51:21 +00:00
morpheus/pkgs/emul
2014-02-20 16:10:47 +00:00

19 lines
260 B
Plaintext

url=$mirror/arch-rootfs.tar.gz
fetch() {
wget -c $url -O src/arch-rootfs.tar.gz
}
unpack() {
cd src
[ -d root.x86_64 ] || tar xzf arch-rootfs.tar.gz
cd -
}
install() {
cd src
cp -arP root.x86_64/* "$root/emul"
cd -
cp stuff/enter-emul "$root/bin"
}