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
No EOL
280 B
Ruby
11 lines
No EOL
280 B
Ruby
require 'formula'
|
|
|
|
class Fastri <Formula
|
|
@homepage='http://eigenclass.org/hiki/fastri'
|
|
@url='http://rubyforge.org/frs/download.php/31654/fastri-0.3.1.tar.gz'
|
|
@md5='3a7d0a64b1c8e230a34ef7b4bad30dbe'
|
|
|
|
def install
|
|
system "ruby setup.rb all --prefix='#{prefix}'"
|
|
end
|
|
end |