commit d7e16587ecf4809c862cb5d5b44c86d733525cae parent c36f1e16fc9d421d7d3d7d4179ed5e1b459ca550 Author: sin <sin@2f30.org> Date: Tue, 17 Sep 2013 10:52:57 +0100 Fs now lives in a git repo Diffstat:
M | pkgs/fs | | | 15 | +++++---------- |
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/pkgs/fs b/pkgs/fs @@ -1,16 +1,11 @@ -url=$mirror/fs.tar.gz +url=git://git.2f30.org/fs fetch() { - # Fetch package - wget -c $url -O src/fs.tar.gz -} - -unpack() { - pushd src - [ -d fs ] || tar xzf fs.tar.gz - popd + git clone $url src/fs } install() { - cp -r src/fs/* $root/ + pushd src/fs + cp -r * $root/ + popd }