aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2011-12-17 23:06:57 -0600
committerJack Nagel2011-12-17 23:58:34 -0600
commit31d1ba0967ba0f442e8221de192362844e38f256 (patch)
tree84a20edefbaa4e32b1cbf1d1716b2a71a2236c0d /Library
parent9e11ce13f2b4e7305f613015af90e2cd6000e03b (diff)
downloadhomebrew-31d1ba0967ba0f442e8221de192362844e38f256.tar.bz2
gpgme: disable gnupg2-only options
Currently, gpgme will build against gnupg2 but this results in a lot of test failures, at least for me. And if both gnupg and gnupg2 are installed, the test suite will run against a combination of binaries from the two packages, resulting in even more failed tests. So for now, let's keep the dependency on gnupg 1.x only and disable the gpgme components that require gnupg2. Patches welcome to fix the underlying issues; I will probably mess around with it in the future, too. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gpgme.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/gpgme.rb b/Library/Formula/gpgme.rb
index 5b8dbbc38..0e4ad1f81 100644
--- a/Library/Formula/gpgme.rb
+++ b/Library/Formula/gpgme.rb
@@ -13,7 +13,10 @@ class Gpgme < Formula
def install
system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
+ "--prefix=#{prefix}",
+ "--enable-static",
+ "--without-gpgsm",
+ "--without-gpgconf"
system "make"
system "make check"
system "make install"