diff options
| author | Nicholas J Humfrey | 2012-06-10 21:42:23 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-01 11:01:55 -0700 |
| commit | 70b3f190b84b0d8aa227b3314ccb0caa2562e684 (patch) | |
| tree | 9251f2a8e3569c09878cee4475dfd20538aeeeac /Library | |
| parent | a88ae2b54cd11ebdcc058bea6e9249a981351ba1 (diff) | |
| download | homebrew-70b3f190b84b0d8aa227b3314ccb0caa2562e684.tar.bz2 | |
RedStore 0.5.4
A lightweight RDF triplestore written in C using the Redland library.
Closes #12736.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/redstore.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/redstore.rb b/Library/Formula/redstore.rb new file mode 100644 index 000000000..e595386c6 --- /dev/null +++ b/Library/Formula/redstore.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Redstore < Formula + homepage 'http://www.aelius.com/njh/' + url 'http://www.aelius.com/njh/redstore/redstore-0.5.4.tar.gz' + sha1 '6de3eb072ea89cdc0d5a9764b5570c87ca01d5fa' + + depends_on 'pkg-config' => :build + depends_on 'redland' + + def install + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
