diff options
| author | Christian Hofstaedtler | 2014-03-01 19:45:54 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2014-03-01 11:48:25 -0800 |
| commit | cffd3b025c293cdb2bda04f888b7cb1a6063d40a (patch) | |
| tree | bef91a042452b54785e0c1238acd53a6315b1d23 | |
| parent | f95e5bc9e900fdb76f1aaa43d68f572fea6eae7f (diff) | |
| download | homebrew-cffd3b025c293cdb2bda04f888b7cb1a6063d40a.tar.bz2 | |
pdns: add --HEAD
Closes #27114.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/pdns.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/pdns.rb b/Library/Formula/pdns.rb index d2e92d85e..c2ee00681 100644 --- a/Library/Formula/pdns.rb +++ b/Library/Formula/pdns.rb @@ -1,7 +1,8 @@ require 'formula' class Pdns < Formula - homepage 'http://wiki.powerdns.com' + homepage 'http://www.powerdns.com' + head 'https://github.com/powerdns/pdns.git' url 'http://downloads.powerdns.com/releases/pdns-3.3.1.tar.gz' sha1 '555862bf9635d1dcab2c4f3b7569bdd8212ef67f' @@ -27,6 +28,7 @@ class Pdns < Formula args << "--with-modules=gsqlite3" end + system "./bootstrap" if build.head? system "./configure", *args # Compilation fails at polarssl if we skip straight to make install |
