diff options
| author | Philip Weaver | 2009-09-25 22:54:53 -0700 |
|---|---|---|
| committer | Max Howell | 2009-09-30 01:24:28 +0100 |
| commit | 08306c3129a1c03e5dcc2597befd9d70fb53cbe3 (patch) | |
| tree | 3ed2c6ffbe2551d00110c5ca4d948cee7ae0e74f /Library/Formula | |
| parent | 31ee69378b9205ccf14c3fb1658258eb20e70008 (diff) | |
| download | homebrew-08306c3129a1c03e5dcc2597befd9d70fb53cbe3.tar.bz2 | |
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.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/aspell.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/aspell.rb b/Library/Formula/aspell.rb new file mode 100644 index 000000000..2caeff5a2 --- /dev/null +++ b/Library/Formula/aspell.rb @@ -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 |
