aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aspell.rb
blob: d0bba8815d04834bbfc98204033f5229a478c853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Aspell <Formula
  url 'ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.6.tar.gz'
  homepage 'http://aspell.net/'
  md5 'bc80f0198773d5c05086522be67334eb'

  def install
    ENV.gcc_4_2
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end