diff options
| author | Tim Heckman | 2014-01-12 23:17:20 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-13 09:34:40 +0000 |
| commit | ef49dae96fc2a31f6c0f93324b38210c1e33324a (patch) | |
| tree | 9f5f3a9b376921a5ad555145d57ab510101bd818 /Library/Formula | |
| parent | ebcd3d81aa932104e6e6062aece045da1e1a9250 (diff) | |
| download | homebrew-ef49dae96fc2a31f6c0f93324b38210c1e33324a.tar.bz2 | |
fwknop 2.6.0
gpgme was made a required dependency and the support is compiled in by
default.
Closes #25862.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fwknop.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Formula/fwknop.rb b/Library/Formula/fwknop.rb index 4ef9bb784..31536d55a 100644 --- a/Library/Formula/fwknop.rb +++ b/Library/Formula/fwknop.rb @@ -3,19 +3,20 @@ require 'formula' class Fwknop < Formula homepage 'http://www.cipherdyne.org/fwknop/' head 'https://github.com/mrash/fwknop.git' - url 'https://github.com/mrash/fwknop/archive/2.5.1.1.tar.gz' - sha1 '47adc5734dfc84f9ab6e2ba8a5097132519cab8a' + url 'https://github.com/mrash/fwknop/archive/2.6.0.tar.gz' + sha1 '8e55413823f57e362a8f732da60da6c3c6240a6c' depends_on :automake depends_on :autoconf depends_on :libtool - depends_on 'gpgme' => :optional + depends_on 'gpgme' def install system './autogen.sh' if build.head? or !File.exist?('configure') system "./configure", "--disable-dependency-tracking", - "--prefix=#{prefix}" + "--prefix=#{prefix}", + "--with-gpgme" system "make install" end |
