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:
parent
0381008d8d
commit
2b8ba854c7
1 changed files with 16 additions and 0 deletions
16
Formula/rasqal.rb
Normal file
16
Formula/rasqal.rb
Normal 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
|
Loading…
Reference in a new issue