diff options
| author | Mike McQuaid | 2011-02-27 20:42:51 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2011-02-27 20:45:11 +0000 |
| commit | cc9ffaecf260856cb7557e7461611d56ec74eac3 (patch) | |
| tree | 6d3095257758fbe5bd973035a0ce3ac22e426561 /Library/Formula | |
| parent | 89ae563c9e972aceed41a73a1923f1abbe4991e5 (diff) | |
| download | homebrew-cc9ffaecf260856cb7557e7461611d56ec74eac3.tar.bz2 | |
Add UI to hunspell.
Closes #3716.
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" |
