From: Ben Gras Date: Wed, 2 Nov 2005 12:05:01 +0000 (+0000) Subject: Andy's new easypack X-Git-Tag: v3.1.2a~530 X-Git-Url: http://zhaoyanbai.com/repos/doxygen-warnings.log?a=commitdiff_plain;h=bc010b74a22c85779388d5ef1313e67b19695a8c;p=minix.git Andy's new easypack --- diff --git a/commands/scripts/easypack.sh b/commands/scripts/easypack.sh index 7fd5a9b04..1c7bee2e8 100644 --- a/commands/scripts/easypack.sh +++ b/commands/scripts/easypack.sh @@ -42,7 +42,7 @@ fi # Loop on the packages for i do # Check to see if it exists. Don't overwrite unless -o given - echo " " ; echo Start fetching $i + echo " " ; echo Start fetching package $i echo " " >>$ORIG_DIR/Log echo ------------- Start fetching $i ------------------ >>$ORIG_DIR/Log if test -r $i @@ -65,11 +65,11 @@ do # Check to see if it exists. Don't overwrite unless -o given urlget $URL >$i.tar.bz2 # See if we got the file or an error - if grep "" $i.tar.bz2 >/dev/null + if grep "" $i.tar.bz2 >/dev/null then # It is not in the directory of tested software. Try beta dir. URL=$BETA_DIR/$i.tar.bz2 urlget $URL >$i.tar.bz2 - if grep "" $i.tar.bz2 >/dev/null + if grep "" $i.tar.bz2 >/dev/null || grep "" $i.tar.bz2 >/dev/null then echo Cannot get $i. echo " " Tried $URL1 echo " " Tried $URL @@ -80,18 +80,20 @@ do # Check to see if it exists. Don't overwrite unless -o given fi # We got it. Unpack it. + echo Package $i.tar.bz2 successfully fetched bunzip2 $i.tar.bz2 || smallbunzip2 $i.tar.bz2 tar xf $i.tar if test ! -d $i then echo Unable to unpack $i continue + else echo Package $i unpacked fi # It is now unpacked. Build it cd $i if sh build >>$ORIG_DIR/Log 2>&1 - then echo $i installed from $URL - else echo $i failed to install + then echo Package $i installed + else echo Package $i failed to install; see Log fi # Clean up