1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-07-05 16:03:30 +00:00
morpheus/pkgs/arch-rootfs

19 lines
262 B
Plaintext
Raw Normal View History

2014-02-13 14:23:43 +00:00
url=$mirror/arch-rootfs.tar.gz
fetch() {
wget -c $url -O src/arch-rootfs.tar.gz
}
unpack() {
pushd src
[ -d root.x86_64 ] || tar xzf arch-rootfs.tar.gz
popd
}
install() {
pushd src
cp -arP root.x86_64/* $root/emul
popd
cp stuff/enter-emul $root/bin
}