aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDominyk Tiller2014-11-17 18:10:03 +0000
committerJack Nagel2014-11-18 22:47:42 -0600
commiteef77dc18059d42622bac77dcaff78feacdf9c38 (patch)
tree3070c6d0ceece10ec76bd643247ca19b4110dd09 /Library
parenta35c7a34b7a3daac528ebb6a63f304e9ddcb020f (diff)
downloadhomebrew-eef77dc18059d42622bac77dcaff78feacdf9c38.tar.bz2
fwknop: gpgme fixes
Relates to #34251. Closes #34264. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/fwknop.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/fwknop.rb b/Library/Formula/fwknop.rb
index 1fd0f5166..1d5847ef3 100644
--- a/Library/Formula/fwknop.rb
+++ b/Library/Formula/fwknop.rb
@@ -5,6 +5,7 @@ class Fwknop < Formula
head "https://github.com/mrash/fwknop.git"
url "https://github.com/mrash/fwknop/archive/2.6.4.tar.gz"
sha1 "b13ef022ade7da6dc5b08335d5a1d29dd898887b"
+ revision 1
bottle do
sha1 "1708a7d273a2b70ca61d9e34189fc9e1cb2cd1f0" => :yosemite
@@ -15,14 +16,15 @@ class Fwknop < Formula
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
+ depends_on "wget" => :optional
depends_on "gpgme"
def install
system "./autogen.sh"
- system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "--with-gpgme"
- system "make install"
+ system "./configure", "--disable-dependency-tracking", "--disable-silent-rules",
+ "--prefix=#{prefix}", "--with-gpgme",
+ "--with-gpg=#{Formula["gnupg2"].opt_prefix}/bin/gpg2"
+ system "make", "install"
end
test do