Add Formula for aspell.

GNU Aspell is a Free and Open Source spell checker designed to eventually
replace Ispell.

A pretty vanilla formula.  I don't know what configure options would be
useful. As it is, it works for me with Emacs.
master
Philip Weaver 2009-09-25 22:54:53 -07:00 committed by Max Howell
parent 5349fa88fb
commit 43f4d5a124
1 changed files with 13 additions and 0 deletions

13
Formula/aspell.rb Normal file
View File

@ -0,0 +1,13 @@
require 'brewkit'
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