diff options
Diffstat (limited to 'meta/recipes-support/libassuan/libassuan_2.4.2.bb')
-rw-r--r-- | meta/recipes-support/libassuan/libassuan_2.4.2.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-support/libassuan/libassuan_2.4.2.bb b/meta/recipes-support/libassuan/libassuan_2.4.2.bb new file mode 100644 index 0000000000..57eab38570 --- /dev/null +++ b/meta/recipes-support/libassuan/libassuan_2.4.2.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "IPC library used by GnuPG and GPGME" | ||
2 | HOMEPAGE = "http://www.gnupg.org/related_software/libassuan/" | ||
3 | BUGTRACKER = "https://bugs.g10code.com/gnupg/index" | ||
4 | |||
5 | LICENSE = "GPLv3 & LGPLv2.1+" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \ | ||
7 | file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \ | ||
8 | file://src/assuan.c;endline=20;md5=0f465544183405055ec179869fc5b5ba \ | ||
9 | file://src/assuan-defs.h;endline=20;md5=20cd55535260ca1779edae5c7b80b21e" | ||
10 | |||
11 | DEPENDS = "libgpg-error" | ||
12 | |||
13 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-${PV}.tar.bz2 \ | ||
14 | file://libassuan-add-pkgconfig-support.patch" | ||
15 | |||
16 | SRC_URI[md5sum] = "70151995c2330ae1261c0a7ca34cf478" | ||
17 | SRC_URI[sha256sum] = "bb06dc81380b74bf1b64d5849be5c0409a336f3b4c45f20ac688e86d1b5bcb20" | ||
18 | |||
19 | BINCONFIG = "${bindir}/libassuan-config" | ||
20 | |||
21 | inherit autotools texinfo binconfig-disabled pkgconfig | ||
22 | |||
23 | do_configure_prepend () { | ||
24 | # Else these could be used in prefernce to those in aclocal-copy | ||
25 | rm -f ${S}/m4/*.m4 | ||
26 | } | ||
27 | |||
28 | BBCLASSEXTEND = "native" | ||