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.
11 lines
313 B
Ruby
11 lines
313 B
Ruby
require 'formula'
|
|
|
|
class Orc <Formula
|
|
head 'git://code.entropywave.com/git/orc.git'
|
|
homepage 'http://code.entropywave.com/projects/orc/'
|
|
|
|
def install
|
|
system "./autogen.sh", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-gtk-doc"
|
|
system "make install"
|
|
end
|
|
end
|