Redland RDF Library Formula
Redland is a set of free software C libraries that provide support for the Resource Description Framework (RDF).
This commit is contained in:
parent
dcea5cb284
commit
382acffc82
1 changed files with 17 additions and 0 deletions
17
Formula/redland.rb
Normal file
17
Formula/redland.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
require 'brewkit'
|
||||
|
||||
class Redland <Formula
|
||||
@url='http://download.librdf.org/source/redland-1.0.9.tar.gz'
|
||||
@homepage='http://librdf.org/'
|
||||
@md5='e5ef0c29c55b4f0f5aeed7955b4d383b'
|
||||
|
||||
def deps
|
||||
LibraryDep.new 'raptor'
|
||||
LibraryDep.new 'rasqal'
|
||||
end
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue