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>
This commit is contained in:
Jack Nagel 2011-12-17 23:06:57 -06:00
parent ca4c79d04d
commit 798afc08cc

View file

@ -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"