61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
14 lines
360 B
Ruby
14 lines
360 B
Ruby
require 'formula'
|
|
|
|
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
|