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.
12 lines
337 B
Ruby
12 lines
337 B
Ruby
require 'formula'
|
|
|
|
class Raptor <Formula
|
|
@url='http://download.librdf.org/source/raptor-1.4.19.tar.gz'
|
|
@homepage='http://librdf.org/raptor/'
|
|
@md5='50acbd3b416c3f9e1a3a8ddb825bac25'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|