njh / redstore

RedStore is a lightweight RDF triplestore written in C using the Redland library.
https://www.aelius.com/njh/redstore/
GNU General Public License v3.0
62 stars 6 forks source link

no configure script in cloned copy of redstore #48

Closed alangrafu closed 11 years ago

alangrafu commented 11 years ago
$ git clone git://github.com/njh/redstore.git
$ cd redstore
$ ./configure
-bash: ./configure: No such file or directory
njh commented 11 years ago

The configure script is generated by autoconf. There are a few options.

  1. The best thing is probably to download the latest stable version of redstore from the homepage:

    http://www.aelius.com/njh/redstore/redstore-0.5.4.tar.gz

    There is also a precompiled Mac OS X binary:

    http://www.aelius.com/njh/redstore/redstore-0.5.4.dmg

  2. If you really want the latest development version, then you can download a snapshot generated whenever there is a checkin to git:

    http://snapshots.aelius.com/redstore/redstore-0.5.5-20130124.tar.gz

  3. Or to generate the configure script using the autogen.sh script (but you will need autoconf, automate and libtool installed on your system).