mirror of
https://git.yoctoproject.org/meta-security
synced 2026-05-31 12:50:19 +00:00
c3ddb212cf
Several recipes used non-standard variable names for the homepage URL (HOME_PAGE, HOME_URL, HOMEDIR) which are not recognized by bitbake. Rename them all to the correct HOMEPAGE variable. Affected recipes: - glome: HOME_PAGE -> HOMEPAGE - google-authenticator-libpam: HOME_PAGE -> HOMEPAGE - arpwatch: HOME_PAGE -> HOMEPAGE - openscap: HOME_URL -> HOMEPAGE - scap-security-guide: HOME_URL -> HOMEPAGE - lynis: HOMEDIR -> HOMEPAGE Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com> Signed-off-by: Scott Murray <scott.murray@konsulko.com>
41 lines
1.4 KiB
BlitzBasic
41 lines
1.4 KiB
BlitzBasic
# Copyright (C) 2017 Armin Kuster <akuster808@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "Lynis is a free and open source security and auditing tool."
|
|
HOMEPAGE = "https://cisofy.com/lynis/"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3edd6782854304fd11da4975ab9799c1"
|
|
|
|
SRC_URI = "git://github.com/CISOfy/lynis.git;branch=master;protocol=https"
|
|
|
|
SRCREV = "06153321ea50d53a27446084e646d9f43fe46e0e"
|
|
|
|
#UPSTREAM_CHECK = "https://downloads.cisofy.com/lynis"
|
|
|
|
inherit autotools-brokensep
|
|
|
|
do_compile[noexec] = "1"
|
|
do_configure[noexec] = "1"
|
|
|
|
do_install () {
|
|
install -d ${D}/${bindir}
|
|
install -d ${D}/${sysconfdir}/lynis
|
|
install -m 555 ${S}/lynis ${D}/${bindir}
|
|
|
|
install -d ${D}/${datadir}/lynis/db
|
|
install -d ${D}/${datadir}/lynis/plugins
|
|
install -d ${D}/${datadir}/lynis/include
|
|
install -d ${D}/${datadir}/lynis/extras
|
|
|
|
cp -r ${S}/db/* ${D}/${datadir}/lynis/db/.
|
|
cp -r ${S}/plugins/* ${D}/${datadir}/lynis/plugins/.
|
|
cp -r ${S}/include/* ${D}/${datadir}/lynis/include/.
|
|
cp -r ${S}/extras/* ${D}/${datadir}/lynis/extras/.
|
|
cp ${S}/*.prf ${D}/${sysconfdir}/lynis
|
|
}
|
|
|
|
FILES:${PN} += "${sysconfdir}/developer.prf ${sysconfdir}/default.prf"
|
|
FILES:${PN}-doc += "lynis.8 FAQ README CHANGELOG.md CONTRIBUTIONS.md CONTRIBUTORS.md"
|
|
|
|
RDEPENDS:${PN} += "procps findutils coreutils iproute2-ip iproute2-ss net-tools"
|