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:
David Höppner 2009-09-19 11:52:11 +02:00
parent 45cbd143dc
commit 419e330cc3

20
Formula/soprano.rb Normal file
View 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