Skip to content

Instantly share code, notes, and snippets.

@icio
Last active August 29, 2015 14:03
Show Gist options
  • Save icio/a7153134f38e6f45ba8d to your computer and use it in GitHub Desktop.
Save icio/a7153134f38e6f45ba8d to your computer and use it in GitHub Desktop.
Building Redland's Raptor RDF Syntax Library and Rasqal RDF Query Library on OSX
  1. Ensure that you have the relevant build tools at your disposal. build-essential ought to cover it.
  2. Download and run install.sh.
  3. Once the script has complete you'll need to sudo make install the packages that you're interested in (or run them locally) -- that's your call. If you're only after roqet then cd rasqal* && sudo make install
wget http://download.librdf.org/source/raptor2-2.0.14.tar.gz
tar -xf raptor2-2.0.14.tar.gz
pushd ./raptor2-2.0.14
./configure
make
popd
wget http://download.librdf.org/source/rasqal-0.9.32.tar.gz
tar -xf rasqal-0.9.32.tar.gz
pushd ./rasqal-0.9.32
PKG_CONFIG_PATH=../raptor2-2.0.14 ./configure
make
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment