aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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