Soprano formula
Soprano (formerly known as QRDF) is a library which provides a highly usable object-oriented C++/Qt4 framework for RDF data. It uses different RDF storage solutions as backends through a simple plugin system. Soprano is targetted at desktop applications that need a RDF data storage solution. It has been optimized for easy usage and simplicity.
This commit is contained in:
parent
45cbd143dc
commit
419e330cc3
1 changed files with 20 additions and 0 deletions
20
Formula/soprano.rb
Normal file
20
Formula/soprano.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
require 'brewkit'
|
||||
|
||||
class Soprano <Formula
|
||||
@url='http://surfnet.dl.sourceforge.net/project/soprano/Soprano/2.3.1/soprano-2.3.1.tar.bz2'
|
||||
@homepage='http://soprano.sourceforge.net/'
|
||||
@md5='c9a2c008b80cd5d76599e9d48139dfe9'
|
||||
|
||||
def deps
|
||||
LibraryDep.new 'qt'
|
||||
LibraryDep.new 'clucene'
|
||||
LibraryDep.new 'redland'
|
||||
end
|
||||
|
||||
def install
|
||||
ENV['CLUCENE_HOME'] = HOMEBREW_PREFIX
|
||||
|
||||
system "cmake . #{std_cmake_parameters}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue