Hunspell formula

master
David Höppner 2009-12-08 11:18:57 +01:00
parent 8d252370f5
commit 3c90cd1882
1 changed files with 12 additions and 0 deletions

12
Formula/hunspell.rb Normal file
View File

@ -0,0 +1,12 @@
require 'formula'
class Hunspell <Formula
url 'http://downloads.sourceforge.net/hunspell/hunspell-1.2.8.tar.gz'
homepage 'http://hunspell.sourceforge.net/'
md5 '1177af54a09e320d2c24015f29c3a93e'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end