homebrew-core/Formula/hunspell.rb
Charlie Sharpsteen d9b4a1fdbc Hunspell 1.3.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-05-12 08:57:52 -07:00

18 lines
502 B
Ruby

require 'formula'
class Hunspell < Formula
url 'http://downloads.sourceforge.net/hunspell/hunspell-1.3.2.tar.gz'
homepage 'http://hunspell.sourceforge.net/'
md5 '3121aaf3e13e5d88dfff13fb4a5f1ab8'
depends_on 'readline'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug",
"--disable-dependency-tracking",
"--with-ui", "--with-readline"
system "make"
ENV.deparallelize
system "make install"
end
end