aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgetlibs.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/getlibs.sh b/getlibs.sh
new file mode 100755
index 0000000..4deb7ee
--- /dev/null
+++ b/getlibs.sh
@@ -0,0 +1,11 @@
1#!/bin/sh
2
3VERSION="3.1.1"
4NAME="RDFox-linux-$VERSION"
5LINK="https://rdfox-distribution.s3.eu-west-2.amazonaws.com/release/v$VERSION/$NAME.zip"
6DEST="./lib/"
7
8mkdir -p "$DEST"
9wget "$LINK"
10unzip "$NAME.zip"
11cp "./$NAME/lib/JRDFox.jar" "$DEST"