aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDavid Höppner2009-12-08 11:18:57 +0100
committerDavid Höppner2010-01-30 13:51:29 +0100
commit3896b435d066e81a864930516340d07874b536ff (patch)
tree108523eca8f0723c98191862c49d877d9e1212fc /Library
parent2f1142ed7db53ad217fcac6f7055f81d10cc73ae (diff)
downloadhomebrew-3896b435d066e81a864930516340d07874b536ff.tar.bz2
Hunspell formula
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/hunspell.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/hunspell.rb b/Library/Formula/hunspell.rb
new file mode 100644
index 000000000..5b4e8d1c4
--- /dev/null
+++ b/Library/Formula/hunspell.rb
@@ -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