aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hunspell.rb
blob: dd7b154ced6b724d02894da2c1d9d91cd052c670 (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", "--prefix=#{prefix}", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--with-ui", "--with-readline"
    system "make"
    ENV.deparallelize
    system "make install"
  end
end