homebrew-core/Formula/redstore.rb
Nicholas J Humfrey e2431c55ed RedStore 0.5.4
A lightweight RDF triplestore written in C using the Redland library.

Closes Homebrew/homebrew#12736.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-01 11:01:55 -07:00

16 lines
416 B
Ruby

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