aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hunspell.rb
blob: 8af11eb5924882fe2836245d0d21214afcaf1895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--with-ui", "--with-readline"
    system "make"
    ENV.deparallelize
    system "make install"
  end
end