homebrew-core/Formula/aspell.rb
Max Howell ff08853e2e Revert "Aspell compiles with newer LLVM."
This reverts commit f34d241fa1b43742416192e31271ed80ac427803.

Doesn't seemingly build with LLVM for some people.
2009-12-16 19:24:37 +00:00

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