diff options
| author | nibbles 2bits | 2012-06-18 09:09:16 -0700 |
|---|---|---|
| committer | Jack Nagel | 2012-06-26 20:05:11 -0500 |
| commit | 18484e00e84fa2cebc48a61a25da43582f698a71 (patch) | |
| tree | 51e13cc8e6fd99e07e137c260d9e1ef4772d2fcd /Library | |
| parent | 844028baa73cdfc80e3f47d1c52f20cf6b0a6b8f (diff) | |
| download | homebrew-18484e00e84fa2cebc48a61a25da43582f698a71.tar.bz2 | |
qdbm 1.8.78
Upgrade qdbm to version 1.8.78.
Add flag to `--enable-bzip`.
Add flag to `--enable-zlib`.
Add flag to `--enable-iconv`.
Those increase functionality at no cost.
Remove the unnecessary `--mandir`. It gets it right now.
Remove the unrecognized `--disable-dependency-tracking`.
Qdbm passes `make check-mac` using clang and llvm from XCode-4.3.3.
Closes #12910.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/qdbm.rb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Library/Formula/qdbm.rb b/Library/Formula/qdbm.rb index 50321971c..08380f7d7 100644 --- a/Library/Formula/qdbm.rb +++ b/Library/Formula/qdbm.rb @@ -1,14 +1,16 @@ require 'formula' class Qdbm < Formula - url 'http://qdbm.sourceforge.net/qdbm-1.8.77.tar.gz' - homepage 'http://qdbm.sourceforge.net/' - md5 '084e07824e231969356ec7cefac97985' + homepage 'http://fallabs.com/qdbm' + url 'http://fallabs.com/qdbm/qdbm-1.8.78.tar.gz' + sha1 '8c2ab938c2dad8067c29b0aa93efc6389f0e7076' def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", + system "./configure", "--disable-debug", "--prefix=#{prefix}", - "--mandir=#{man}" + "--enable-bzip", + "--enable-zlib", + "--enable-iconv" system "make mac" system "make install-mac" end |
