d9b4a1fdbc
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
18 lines
502 B
Ruby
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
|