28 lines
758 B
BlitzBasic
28 lines
758 B
BlitzBasic
# Copyright (C) 2024 Vincent BENOIT <vincent.benoit@scle.fr>
|
|
# Release under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "openssl conf file with PKCS#11"
|
|
MAINTAINER = "Vincent BENOIT <vincent.benoit@benserv.fr>"
|
|
LICENSE = "CLOSED"
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI += " \
|
|
file://pkcs11.cnf \
|
|
"
|
|
|
|
do_install:append:class-native () {
|
|
install -d ${D}${sysconfdir}/ssl
|
|
install -m 0755 ${WORKDIR}/pkcs11.cnf ${D}${sysconfdir}/ssl/
|
|
}
|
|
|
|
FILES:${PN}:class-native += " \
|
|
${sysconfdir}/ssl/pkcs11.cnf \
|
|
"
|
|
|
|
RDEPENDS:${PN}:class-native += " \
|
|
libp11-native \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native"
|