summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libgcrypt/libgcrypt.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libgcrypt/libgcrypt.inc')
-rw-r--r--meta/recipes-support/libgcrypt/libgcrypt.inc31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc
new file mode 100644
index 0000000000..08fe7992fa
--- /dev/null
+++ b/meta/recipes-support/libgcrypt/libgcrypt.inc
@@ -0,0 +1,31 @@
1DESCRIPTION = "A general purpose cryptographic library based on the code from GnuPG"
2HOMEPAGE = "http://directory.fsf.org/project/libgcrypt/"
3BUGTRACKER = "https://bugs.g10code.com/gnupg/index"
4SECTION = "libs"
5PRIORITY = "optional"
6
7# helper program gcryptrnd and getrandom are under GPL, rest LGPL
8LICENSE = "GPLv2+ & LGPLv2.1+"
9LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
10 file://COPYING.LIB;md5=bbb461211a33b134d42ed5ee802b37ff"
11
12DEPENDS = "libgpg-error"
13
14SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz \
15 file://add-pkgconfig-support.patch"
16
17inherit autotools binconfig pkgconfig
18
19EXTRA_OECONF = "--without-pth --disable-asm --with-capabilities"
20
21# libgcrypt.pc is added locally and thus installed here
22do_install_append() {
23 install -d ${D}/${libdir}/pkgconfig
24 install -m 0644 ${S}/src/libgcrypt.pc ${D}/${libdir}/pkgconfig/
25}
26
27ARM_INSTRUCTION_SET = "arm"
28
29# move libgcrypt-config into -dev package
30FILES_${PN} = "${libdir}/lib*.so.*"
31FILES_${PN}-dev += "${bindir} ${libdir}/pkgconfig/*.pc"