diff options
| author | Adam Vandenberg | 2012-02-10 20:08:48 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-10 20:08:48 -0800 |
| commit | 83a367a017ff650832a9c6379d058600a2893d91 (patch) | |
| tree | 2ed9378549ae48e4634432d101fbcbf56fd9f522 | |
| parent | 93b32c6ea45815646df4fe9e601454544fe2afee (diff) | |
| download | homebrew-83a367a017ff650832a9c6379d058600a2893d91.tar.bz2 | |
pound 2.6
| -rw-r--r-- | Library/Formula/pound.rb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Library/Formula/pound.rb b/Library/Formula/pound.rb index 7cc10b5c3..e3dfec635 100644 --- a/Library/Formula/pound.rb +++ b/Library/Formula/pound.rb @@ -1,16 +1,17 @@ require 'formula' class Pound < Formula - url 'http://www.apsis.ch/pound/Pound-2.5.tgz' homepage 'http://www.apsis.ch/pound' - md5 '8a39f5902094619afcda7d12d9d8342c' + url 'http://www.apsis.ch/pound/Pound-2.6.tgz' + md5 '8c913b527332694943c4c67c8f152071' depends_on 'pcre' def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" - system "make" # Manual install to get around group issues - sbin.install ["pound", "poundctl"] - man8.install ["pound.8", "poundctl.8"] + system "./configure", "--prefix=#{prefix}" + system "make" + # Manual install to get around group issues + sbin.install "pound", "poundctl" + man8.install "pound.8", "poundctl.8" end end |
