diff options
author | root <root@rshg054.dnsready.net> | 2013-02-18 00:08:26 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-02-18 00:08:26 -0800 |
commit | 29883fd322e5c6464bf44e9eaa31b17790461bd0 (patch) | |
tree | 7a5c796989f3be3dbe636ab86c5c3a8ce77a2237 /core/gnupg/PKGBUILD | |
parent | c6f4cd18ab706868be0eff10327a0dcd58cecdf3 (diff) |
Mon Feb 18 00:08:22 PST 2013
Diffstat (limited to 'core/gnupg/PKGBUILD')
-rw-r--r-- | core/gnupg/PKGBUILD | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/core/gnupg/PKGBUILD b/core/gnupg/PKGBUILD index efbc00dd9..db0e5dd2e 100644 --- a/core/gnupg/PKGBUILD +++ b/core/gnupg/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 176299 2013-01-29 03:50:02Z bisson $ +# $Id: PKGBUILD 178149 2013-02-17 00:23:25Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Tobias Powalowski <tpowa@archlinux.org> # Contributor: Andreas Radke <andyrtr@archlinux.org> @@ -6,7 +6,7 @@ pkgname=gnupg pkgver=2.0.19 -pkgrel=5 +pkgrel=6 pkgdesc='Complete and free implementation of the OpenPGP standard' url='http://www.gnupg.org/' license=('GPL') @@ -32,9 +32,18 @@ replaces=('gnupg2') build() { cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i ../protect-tool-env.patch # FS#31900 patch -p1 -i ../valid-keyblock-packet.patch - ./configure --prefix=/usr --libexecdir=/usr/lib/gnupg + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/gnupg \ + --enable-maintainer-mode \ + --enable-symcryptrun \ + --enable-gpgtar \ + make } |