Skip to content

Commit

Permalink
issue #116: add installation instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
pkiraly committed Dec 15, 2021
1 parent 33cd560 commit 13c2a2a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ sudo apt-get install php php-sqlite3
```bash
export SOLR_VERSION=8.11.0
cd /opt
curl -s -L http://archive.apache.org/dist/lucene/solr/${SOLR_VERSION}/solr-${SOLR_VERSION}.zip --output solr-${SOLR_VERSION}.zip \
unzip -q solr-${SOLR_VERSION}.zip \
rm solr-${SOLR_VERSION}.zip \
wget http://archive.apache.org/dist/lucene/solr/${SOLR_VERSION}/solr-${SOLR_VERSION}.zip
unzip -q solr-${SOLR_VERSION}.zip
rm solr-${SOLR_VERSION}.zip
ln -s solr-${SOLR_VERSION} solr
```

Expand All @@ -50,11 +50,15 @@ unzip metadata-qa-marc-$VERSION-release.zip
cd metadata-qa-marc-$VERSION
cp setdir.sh.template setdir.sh
```
Note: `VERSION` points here to the latest released version at time of writing. SNAPSHOT versions can be download from https://oss.sonatype.org/content/repositories/snapshots/de/gwdg/metadataqa/metadata-qa-marc/

Now edit the following lines in `setdir.sh`

```bash
BASE_INPUT_DIR=your/path
BASE_OUTPUT_DIR=your/path
```

`BASE_INPUT_DIR` is the directory where your MARC21 files exists, `BASE_OUTPUT_DIR` is where QA catalogue will put
the results of the analyses.

Expand Down

0 comments on commit 13c2a2a

Please sign in to comment.