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.
13 lines
286 B
Ruby
13 lines
286 B
Ruby
require 'formula'
|
|
|
|
class Aspell <Formula
|
|
url 'ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.6.tar.gz'
|
|
homepage 'http://aspell.net/'
|
|
md5 'bc80f0198773d5c05086522be67334eb'
|
|
|
|
def install
|
|
ENV.gcc_4_2
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|