Rasqal RDF Query Library Formula

Rasqal is a free software / Open Source C library that handles Resource Description
Framework (RDF) query syntaxes, query construction and query execution returning result
bindings. The supported query languages are SPARQL and RDQL.
This commit is contained in:
David Höppner 2009-09-14 20:19:58 +02:00 committed by Max Howell
parent 0381008d8d
commit 2b8ba854c7

16
Formula/rasqal.rb Normal file
View file

@ -0,0 +1,16 @@
require 'brewkit'
class Rasqal <Formula
@url='http://download.librdf.org/source/rasqal-0.9.16.tar.gz'
@homepage='http://librdf.org/rasqal/'
@md5='fca8706f2c4619e2fa3f8f42f8fc1e9d'
def deps
LibraryDep.new 'raptor'
end
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end