blob: 66c262302d0c1cfcfe5127b58cd9eb5a801e080d [file] [log] [blame]
Brad Bishop26bdd442019-08-16 17:08:17 -04001# Copyright (C) 2017 Armin Kuster <akuster808@gmail.com>
2# Released under the MIT license (see COPYING.MIT for the terms)
3
4SUMARRY = "SCAP content for various platforms"
5HOME_URL = "https://www.open-scap.org/security-policies/scap-security-guide/"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=97662e4486d9a1d09f358851d9f41a1a"
7LICENSE = "LGPL-2.1"
8
9DEPENDS = "openscap-native python3 python3-pyyaml-native python3-jinja2-native libxml2-native"
Brad Bishop26bdd442019-08-16 17:08:17 -040010
11S = "${WORKDIR}/git"
12
13inherit cmake pkgconfig python3native
14
Brad Bishop26bdd442019-08-16 17:08:17 -040015STAGING_OSCAP_BUILDDIR = "${TMPDIR}/work-shared/openscap/oscap-build-artifacts"
Andrew Geissler1fe918a2020-05-15 14:16:47 -050016export OSCAP_CPE_PATH="${STAGING_OSCAP_BUILDDIR}${datadir_native}/openscap/cpe"
17export OSCAP_SCHEMA_PATH="${STAGING_OSCAP_BUILDDIR}${datadir_native}/openscap/schemas"
18export OSCAP_XSLT_PATH="${STAGING_OSCAP_BUILDDIR}${datadir_native}/openscap/xsl"
Brad Bishop26bdd442019-08-16 17:08:17 -040019
20OECMAKE_GENERATOR = "Unix Makefiles"
21
22EXTRA_OECMAKE += "-DENABLE_PYTHON_COVERAGE=OFF"
23
24B = "${S}/build"
25
Brad Bishop1fdf4aa2019-09-09 14:56:41 -040026do_configure[depends] += "openscap-native:do_install"
27
Brad Bishop26bdd442019-08-16 17:08:17 -040028do_configure_prepend () {
29 sed -i -e 's:NAMES\ sed:NAMES\ ${HOSTTOOLS_DIR}/sed:g' ${S}/CMakeLists.txt
30 sed -i -e 's:NAMES\ grep:NAMES\ ${HOSTTOOLS_DIR}/grep:g' ${S}/CMakeLists.txt
31}
32
33FILES_${PN} += "${datadir}/xml"
Brad Bishop1fdf4aa2019-09-09 14:56:41 -040034
35RDEPENDS_${PN} = "openscap"