homebrew-core/Formula/hunspell.rb

19 lines
492 B
Ruby
Raw Normal View History

2009-12-08 10:18:57 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Hunspell < Formula
url 'http://downloads.sourceforge.net/hunspell/hunspell-1.3.2.tar.gz'
2009-12-08 10:18:57 +00:00
homepage 'http://hunspell.sourceforge.net/'
sha1 '902c76d2b55a22610e2227abc4fd26cbe606a51c'
2009-12-08 10:18:57 +00:00
depends_on 'readline'
2009-12-08 10:18:57 +00:00
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-ui", "--with-readline"
2010-12-28 14:10:49 +00:00
system "make"
ENV.deparallelize
2009-12-08 10:18:57 +00:00
system "make install"
end
end