summaryrefslogtreecommitdiff
path: root/openbabel.sh
diff options
context:
space:
mode:
authorAndreas Maunz <andreas@maunz.de>2011-04-01 15:37:43 +0200
committerAndreas Maunz <andreas@maunz.de>2011-04-01 15:37:43 +0200
commit7dacb96c5c4c46f8fd0c76bd26e5d37319bb5eb1 (patch)
treef271b93c98e0c5193911197f90decc505a18c28c /openbabel.sh
parentb69506cc0d7b3b2336444b6458cde7507388a8ca (diff)
all
Diffstat (limited to 'openbabel.sh')
-rwxr-xr-xopenbabel.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/openbabel.sh b/openbabel.sh
index 0bcd148..94ff981 100755
--- a/openbabel.sh
+++ b/openbabel.sh
@@ -5,7 +5,8 @@
# Author: Christoph Helma, Andreas Maunz.
#
-source ./utils.sh
+source "`pwd`/utils.sh"
+DIR="`pwd`"
if [ "$(id -u)" = "0" ]; then
echo "This script must be run as non-root." 1>&2
@@ -25,7 +26,6 @@ LOG="/tmp/`basename $0`-log.txt"
echo
echo "Openbabel ('$OB_DEST', '$LOG'):"
-DIR="`pwd`"
mkdir "$OB_DEST" >/dev/null 2>&1
if [ ! -d "$OB_DEST" ]; then
@@ -39,13 +39,13 @@ else
fi
if [ ! $OB_DONE ]; then
- cd /tmp
+ cd "/tmp">>$LOG 2>/dev/null
URI="http://downloads.sourceforge.net/project/openbabel/openbabel/$OB_NUM_VER/$OB_VER.tar.gz?use_mirror=kent"
if ! [ -d "/tmp/$OB_VER" ]; then
cmd="$WGET $URI" && run_cmd "$cmd" "Download"
cmd="tar zxf $OB_VER.tar.gz?use_mirror=kent $OB_VER" && run_cmd "$cmd" "Unpack"
fi
- cd "/tmp/$OB_VER"
+ cd "/tmp/$OB_VER">>$LOG 2>/dev/null
cmd="./configure --prefix=$OB_DEST" && run_cmd "$cmd" "Configure"
cmd="make" && run_cmd "$cmd" "Make"