diff options
| author | Tim Heckman | 2013-11-17 05:10:33 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-17 10:41:54 -0800 |
| commit | a2450ff535a78ca127dc5724113ff3224d8a5549 (patch) | |
| tree | 0df7e1614eb486bc81f5c6bf735cf2ba20e36b55 /Library/Formula | |
| parent | 57cf673b926c752c87bd3035af59c7573c9ff987 (diff) | |
| download | homebrew-a2450ff535a78ca127dc5724113ff3224d8a5549.tar.bz2 | |
fwknop: add --HEAD
Closes #24397.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fwknop.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Library/Formula/fwknop.rb b/Library/Formula/fwknop.rb index f347967d2..a625ed57f 100644 --- a/Library/Formula/fwknop.rb +++ b/Library/Formula/fwknop.rb @@ -5,10 +5,17 @@ class Fwknop < Formula url 'http://www.cipherdyne.org/fwknop/download/fwknop-2.5.1.tar.bz2' sha1 '65bed25e9d7f4a7ccc3f15cab35b95a6f7b21873' + head do + url 'https://github.com/mrash/fwknop.git' + depends_on :automake + depends_on :autoconf + end + # needed for gpg support depends_on 'gpgme' => :optional def install + system './autogen.sh' if build.head? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
