1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-28 15:41:24 +00:00
morpheus/pkgs/fs

17 lines
184 B
Plaintext

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