diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/hunspell.rb | 6 |
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" |
