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
336 B
Ruby
12 lines
336 B
Ruby
require 'formula'
|
|
|
|
class Links <Formula
|
|
@url='http://links.twibright.com/download/links-2.2.tar.gz'
|
|
@homepage='http://links.twibright.com/'
|
|
@md5='c9937f9ed0061f264973182f871fb667'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|