summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/gnupg
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2012-02-01 07:20:31 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-03 17:23:33 +0000
commit8fcfbaeb488b3ad72e827b285294e51598e7ad7b (patch)
tree90ebc81e8d06aebd2ab31cb6d0f4eb636191862b /meta/recipes-support/gnupg
parent6034d1c51273d2e3d4b0e08dfac2e04725eeeb24 (diff)
downloadpoky-8fcfbaeb488b3ad72e827b285294e51598e7ad7b.tar.gz
gnupg: add 2.0.18 (initial recipe)
GnuPG 2.0 is the new modularized version of GnuPG supporting OpenPGP and S/MIME (From OE-Core rev: d99215fb1928e9996bb358b9f95d379d93b45377) Signed-off-by: Steve Sakoman <steve@sakoman.com> Acked-by: Paul Menzel <paulepanter@users.sourceforge.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gnupg')
-rw-r--r--meta/recipes-support/gnupg/gnupg_2.0.18.bb24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-support/gnupg/gnupg_2.0.18.bb b/meta/recipes-support/gnupg/gnupg_2.0.18.bb
new file mode 100644
index 0000000000..c1024c8b6b
--- /dev/null
+++ b/meta/recipes-support/gnupg/gnupg_2.0.18.bb
@@ -0,0 +1,24 @@
1DESCRIPTION = "GNU privacy guard - a free PGP replacement (new v2.x)"
2HOMEPAGE = "http://www.gnupg.org/"
3LICENSE = "GPLv3 & LGPLv3"
4LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
5 file://COPYING.LIB;md5=6a6a8e020838b23406c81b19c1d46df6"
6
7DEPENDS = "pth libassuan libksba zlib bzip2 readline"
8
9inherit autotools gettext
10
11SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${PN}/${P}.tar.bz2"
12
13SRC_URI[md5sum] = "2f37e0722666a0fedbe4d9f9227ac4d7"
14SRC_URI[sha256sum] = "48aedd762ca443fb952a9e859efe3c66706d7c2c9c77c32dbdbac4fe962dae5b"
15
16EXTRA_OECONF = "--disable-ldap \
17 --with-zlib=${STAGING_LIBDIR}/.. \
18 --with-bzip2=${STAGING_LIBDIR}/.. \
19 --with-readline=${STAGING_LIBDIR}/.. \
20 "
21
22do_install_append() {
23 ln -sf gpg2 ${D}${bindir}/gpg
24}