aboutsummaryrefslogtreecommitdiff
path: root/munin/munin.build
diff options
context:
space:
mode:
Diffstat (limited to 'munin/munin.build')
-rwxr-xr-xmunin/munin.build11
1 files changed, 10 insertions, 1 deletions
diff --git a/munin/munin.build b/munin/munin.build
index 9339c483..61108bc3 100755
--- a/munin/munin.build
+++ b/munin/munin.build
@@ -55,8 +55,13 @@ RTOOL="wget"
PACKAGE_EXT="gz"
SRC="$PACKAGE"_"$VERSION.tar.$PACKAGE_EXT"
URL="http://easynews.dl.sourceforge.net/sourceforge/$PACKAGE/$SRC"
+
SRC_DIR="$SRC_DIR/$PACKAGE"
+if [ ! -d "$SRC_DIR" ]; then
+ mkdir -p $SRC_DIR
+fi
+
if [ "$RTOOL" == "wget" ] && [ ! -f "$SRC_DIR/$SRC" ]; then
rm -f $SRC_DIR/$SRC
wget "$URL" -O "$SRC_DIR/$SRC"
@@ -69,7 +74,11 @@ else
fi
TMP="$TMP/$PACKAGE"
-mkdir -p $TMP/package-$PACKAGE
+
+if [ ! -d "$TMP" ]; then
+ mkdir -p $TMP
+fi
+
cd $TMP
tar xvf$tarflag $SRC_DIR/$SRC