aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2010-12-28 14:10:49 +0000
committerMike McQuaid2010-12-28 14:10:49 +0000
commitfdcc2cb09d46ef56b7c5dac8eeb25c3d156df6a5 (patch)
tree7bafc29fce715a779a9a7d4466157eaee0b6bdd4 /Library/Formula
parentc13d385372e10fb0e965d32f250cbf6bdcb3503b (diff)
downloadhomebrew-fdcc2cb09d46ef56b7c5dac8eeb25c3d156df6a5.tar.bz2
Update hunspell to 1.2.12.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/hunspell.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/hunspell.rb b/Library/Formula/hunspell.rb
index 5b4e8d1c4..e70854d9b 100644
--- a/Library/Formula/hunspell.rb
+++ b/Library/Formula/hunspell.rb
@@ -1,12 +1,14 @@
require 'formula'
class Hunspell <Formula
- url 'http://downloads.sourceforge.net/hunspell/hunspell-1.2.8.tar.gz'
+ url 'http://downloads.sourceforge.net/hunspell/hunspell-1.2.12.tar.gz'
homepage 'http://hunspell.sourceforge.net/'
- md5 '1177af54a09e320d2c24015f29c3a93e'
+ md5 '5ef2dc1026660d0ffb7eae7b511aee23'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make"
+ ENV.deparallelize
system "make install"
end
end