mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
30ef6ad7d9
Signed-off-by: Derek Straka <derek@asterius.io>
31 lines
888 B
BlitzBasic
31 lines
888 B
BlitzBasic
SUMMARY = "Library for using PKCS"
|
|
DESCRIPTION = "\
|
|
Libp11 is a library implementing a small layer on top of PKCS \
|
|
make using PKCS"
|
|
HOMEPAGE = "http://www.opensc-project.org/libp11"
|
|
SECTION = "Development/Libraries"
|
|
LICENSE = "LGPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=fad9b3332be894bab9bc501572864b29"
|
|
DEPENDS = "libtool openssl"
|
|
|
|
SRC_URI = "git://github.com/OpenSC/libp11.git"
|
|
SRCREV = "22de793340ab73cafc92f8238afb51a06d8411c3"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
# Currently, Makefile dependencies are incorrectly defined which causes build errors
|
|
# The number of jobs is high
|
|
# See https://github.com/OpenSC/libp11/issues/94
|
|
PARALLEL_MAKE = ""
|
|
EXTRA_OECONF = "--disable-static"
|
|
|
|
do_install_append () {
|
|
rm -rf ${D}${libdir}/*.la
|
|
rm -rf ${D}${docdir}/${BPN}
|
|
}
|
|
|
|
FILES_${PN} += "${libdir}/pkcs11${SOLIBS}"
|
|
FILES_${PN}-dev += "${libdir}/pkcs11${SOLIBSDEV}"
|