1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-30 21:31:22 +00:00
morpheus/pkgs/fs

17 lines
184 B
Plaintext
Raw Normal View History

2013-09-06 08:31:51 +00:00
url=$mirror/fs.tar.gz
2013-09-05 11:58:51 +00:00
2013-09-06 08:31:51 +00:00
fetch() {
# Fetch package
wget -c $url -O src/fs.tar.gz
}
2013-09-05 11:58:51 +00:00
2013-09-06 08:31:51 +00:00
unpack() {
pushd src
[ -d fs ] || tar xzf fs.tar.gz
popd
}
2013-09-05 11:58:51 +00:00
2013-09-06 08:31:51 +00:00
install() {
cp -r src/fs/* $root/
}