Skip to content

Commit

Permalink
DOC: Improved installation documentaton.
Browse files Browse the repository at this point in the history
Added instructions for installation on Fedora.

Added instructions for installation of a recent version of Serd.
  • Loading branch information
wouterbeek committed Jun 11, 2017
1 parent 334c18e commit 3c8100b
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,31 @@ Unix-like machines. Installation on Windows requires more creativity.
$ git clone https://github.com/JanWielemaker/hdt
```

b. Install the prerequisite libraries. On Ubuntu:
b. Install a recent version of Serd:

```bash
curl -s http://download.drobilla.net/serd-0.26.0.tar.bz2 | tar -xj && \
cd serd-0.26.0 && \
./waf configure && \
./waf && \
sudo ./waf install;
```
sudo apt-get install libserd-dev libraptor-dev
```

c. Start SWI-Prolog and run
c. Install Raptor:

* On Fedora:

```bash
sudo dnf install raptor2-devel
```

* On Ubuntu:

```bash
sudo apt-get install libraptor-dev
```

d. Start SWI-Prolog and run

```prolog
?- pack_rebuild(hdt).
Expand Down

0 comments on commit 3c8100b

Please sign in to comment.