mirror of
git://git.yoctoproject.org/poky
synced 2026-09-09 06:16:05 +00:00
(From OE-Core rev: 8ee0bc7a8aab9369f6c09b561b9d2702a2fc6391) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.2 KiB
BlitzBasic
36 lines
1.2 KiB
BlitzBasic
SUMMARY = "IPC library used by GnuPG and GPGME"
|
|
HOMEPAGE = "http://www.gnupg.org/related_software/libassuan/"
|
|
BUGTRACKER = "https://bugs.g10code.com/gnupg/index"
|
|
|
|
LICENSE = "GPLv3+ & LGPLv2.1+"
|
|
LICENSE_${PN} = "LGPLv2.1+"
|
|
LICENSE_${PN}-doc = "GPLv3+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
|
|
file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
|
file://src/assuan.c;endline=20;md5=ab92143a5a2adabd06d7994d1467ea5c\
|
|
file://src/assuan-defs.h;endline=20;md5=15d950c83e82978e35b35e790d7e4d39"
|
|
|
|
DEPENDS = "libgpg-error"
|
|
|
|
UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html"
|
|
SRC_URI = "${GNUPG_MIRROR}/libassuan/libassuan-${PV}.tar.bz2 \
|
|
file://libassuan-add-pkgconfig-support.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "c080ee96b3bd519edd696cfcebdecf19a3952189178db9887be713ccbcb5fbf0"
|
|
|
|
BINCONFIG = "${bindir}/libassuan-config"
|
|
|
|
inherit autotools texinfo binconfig-disabled pkgconfig multilib_header
|
|
|
|
do_configure_prepend () {
|
|
# Else these could be used in preference to those in aclocal-copy
|
|
rm -f ${S}/m4/*.m4
|
|
}
|
|
|
|
do_install_append () {
|
|
oe_multilib_header assuan.h
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|