summaryrefslogtreecommitdiff
path: root/rasqal-install
diff options
context:
space:
mode:
Diffstat (limited to 'rasqal-install')
-rwxr-xr-xrasqal-install3
1 files changed, 2 insertions, 1 deletions
diff --git a/rasqal-install b/rasqal-install
index bc06450..42a7765 100755
--- a/rasqal-install
+++ b/rasqal-install
@@ -5,7 +5,7 @@ DIR=`pwd`
. ./utils.sh || (echo "Utils could not be loaded, check opentox-ui.sh." 1>&2 && exit 1)
SELF=$(basename $0 -install)
check_log $SELF
-check_utils "wget tar make grep"
+check_utils "apt-get wget tar make grep"
# Build
mkdir -p $OT_PREFIX/tmp
@@ -15,6 +15,7 @@ export RASQAL_DIR=$OT_PREFIX/$SELF
cmd="$TAR xvzf $RASQAL_VER.tar.gz" && run_cmd "$cmd" "Unpack"
rm $RASQAL_VER.tar.gz
cd $RASQAL_VER
+cmd="sudo $APT_GET -y build-dep $SELF" && run_cmd "$cmd" "Build dependencies"
cmd="./configure --prefix=$RASQAL_DIR" && run_cmd "$cmd" "Configure"
cmd="$MAKE" && run_cmd "$cmd" "Make"
cmd="$MAKE install" && run_cmd "$cmd" "Make Install"