18 lines
503 B
Plaintext
18 lines
503 B
Plaintext
# Copyright (C) 2023 Vincent BENOIT <vincent.benoit@scle.fr>
|
|
# Release under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI += " \
|
|
file://openssl.cnf \
|
|
"
|
|
|
|
do_install:append:class-native () {
|
|
install -d ${D}${sysconfdir}/ssl
|
|
install -m 0755 ${WORKDIR}/openssl.cnf ${D}${sysconfdir}/ssl/
|
|
}
|
|
|
|
FILES:${PN}:class-native += " \
|
|
${sysconfdir}/ssl/openssl.cnf \
|
|
"
|