aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2011-02-27 20:42:51 +0000
committerMike McQuaid2011-02-27 20:45:11 +0000
commitcc9ffaecf260856cb7557e7461611d56ec74eac3 (patch)
tree6d3095257758fbe5bd973035a0ce3ac22e426561 /Library/Formula
parent89ae563c9e972aceed41a73a1923f1abbe4991e5 (diff)
downloadhomebrew-cc9ffaecf260856cb7557e7461611d56ec74eac3.tar.bz2
Add UI to hunspell.
Closes #3716.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/hunspell.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Formula/hunspell.rb b/Library/Formula/hunspell.rb
index db0f69462..7c744e205 100644
--- a/Library/Formula/hunspell.rb
+++ b/Library/Formula/hunspell.rb
@@ -5,8 +5,12 @@ class Hunspell <Formula
homepage 'http://hunspell.sourceforge.net/'
md5 'c2f289af57a677e6b258f2d18ecb178e'
+ depends_on 'readline'
+
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--prefix=#{prefix}", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--with-ui", "--with-readline"
system "make"
ENV.deparallelize
system "make install"