diff options
Diffstat (limited to 'rdfox_setup.sh')
-rwxr-xr-x | rdfox_setup.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/rdfox_setup.sh b/rdfox_setup.sh new file mode 100755 index 0000000..2091088 --- /dev/null +++ b/rdfox_setup.sh | |||
@@ -0,0 +1,13 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | VERSION="5.2.1" | ||
4 | NAME="RDFox-linux-x86_64-$VERSION" | ||
5 | LINK="https://rdfox-distribution.s3.eu-west-2.amazonaws.com/release/v$VERSION/$NAME.zip" | ||
6 | DEST="lib" | ||
7 | |||
8 | mkdir -p "$DEST" | ||
9 | cd "$DEST" | ||
10 | wget "$LINK" | ||
11 | unzip "$NAME.zip" | ||
12 | ln -s "$NAME/lib/JRDFox.jar" | ||
13 | cd - | ||