a0759ae93a
Many formula were imported during the development of the dependency branch.
14 lines
360 B
Ruby
14 lines
360 B
Ruby
require 'brewkit'
|
|
|
|
class Rasqal <Formula
|
|
@url='http://download.librdf.org/source/rasqal-0.9.16.tar.gz'
|
|
@homepage='http://librdf.org/rasqal/'
|
|
@md5='fca8706f2c4619e2fa3f8f42f8fc1e9d'
|
|
|
|
depends_on 'raptor'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|