blob: 2237782009e8c72b2a0b8e10b0c19b46371e0d22 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001SUMMARY = "Library for using PKCS"
2DESCRIPTION = "\
3Libp11 is a library implementing a small layer on top of PKCS \
4make using PKCS"
Brad Bishop15ae2502019-06-18 21:44:24 -04005HOMEPAGE = "https://github.com/OpenSC/libp11"
6BUGTRACKER = "https://github.com/OpenSC/libp11/issues"
Brad Bishopd7bf8c12018-02-25 22:55:05 -05007SECTION = "Development/Libraries"
Andrew Geissler9aee5002022-03-30 16:27:02 +00008LICENSE = "LGPL-2.0-or-later"
Brad Bishopd7bf8c12018-02-25 22:55:05 -05009LIC_FILES_CHKSUM = "file://COPYING;md5=fad9b3332be894bab9bc501572864b29"
10DEPENDS = "libtool openssl"
11
Andrew Geissler595f6302022-01-24 19:11:47 +000012SRC_URI = "git://github.com/OpenSC/libp11.git;branch=master;protocol=https"
Patrick Williamsdb4c27e2022-08-05 08:10:29 -050013SRCREV = "53d65dc48cf436694f7edcfc805414e608e8a2bf"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014
Andrew Geissler82c905d2020-04-13 13:39:40 -050015UPSTREAM_CHECK_GITTAGREGEX = "libp11-(?P<pver>\d+(\.\d+)+)"
16
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017S = "${WORKDIR}/git"
18
19inherit autotools pkgconfig
20
21EXTRA_OECONF = "--disable-static"
22
Patrick Williams213cb262021-08-07 19:21:33 -050023do_install:append () {
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024 rm -rf ${D}${docdir}/${BPN}
25}
26
Patrick Williams213cb262021-08-07 19:21:33 -050027FILES:${PN} += "${libdir}/engines*/pkcs11.so"
28FILES:${PN}-dev += "${libdir}/engines*/libpkcs11${SOLIBSDEV}"
Brad Bishop8410d612019-11-25 09:40:59 -050029
30BBCLASSEXTEND = "native"