mirror of
https://git.yoctoproject.org/meta-security
synced 2026-04-20 23:40:05 +00:00
Since I am maintaining buck-security it has accepted the patch take_root_dir.patch and the new version (0.7) contains the result of applying the patch. Signed-off-by: mulhern <mulhern@yoctoproject.org>
64 lines
2.6 KiB
BlitzBasic
64 lines
2.6 KiB
BlitzBasic
SUMMARY = "Linux security scanner"
|
|
DESCRIPTION = "Buck-Security is a security scanner for Debian and Ubuntu Linux. It runs a couple of important checks and helps you to harden your Linux \
|
|
system. This enables you to quickly overview the security status of your Linux system."
|
|
SECTION = "security"
|
|
LICENSE = "GPL-2.0"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
|
|
RDEPENDS_${PN} = "coreutils \
|
|
gnupg \
|
|
net-tools \
|
|
perl \
|
|
perl-module-data-dumper \
|
|
perl-module-file-basename \
|
|
perl-module-file-spec \
|
|
perl-module-getopt-long \
|
|
perl-module-lib \
|
|
perl-module-posix \
|
|
perl-module-term-ansicolor \
|
|
perl-module-time-localtime \
|
|
pinentry \
|
|
"
|
|
|
|
RDEPENDS_${PN}_class-native = "coreutils \
|
|
net-tools \
|
|
perl \
|
|
perl-module-data-dumper \
|
|
perl-module-file-basename \
|
|
perl-module-file-spec \
|
|
perl-module-getopt-long \
|
|
perl-module-lib \
|
|
perl-module-posix \
|
|
perl-module-term-ansicolor \
|
|
perl-module-time-localtime \
|
|
"
|
|
|
|
SRC_URI = "http://sourceforge.net/projects/buck-security/files/buck-security/buck-security_${PV}/${BPN}_${PV}.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "611a3e9bb7ed8a8270aa15216c321c53"
|
|
SRC_URI[sha256sum] = "c533c6631ec3554dd8d39d2d1c3ed44badbbf50810ebb75469c74639fa294b01"
|
|
|
|
S = "${WORKDIR}/${BPN}_${PV}"
|
|
|
|
do_configure() {
|
|
:
|
|
}
|
|
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}/buck
|
|
cp -r ${S}/* ${D}${bindir}/buck
|
|
cp -r ${S}/buck-security ${D}${bindir}
|
|
sed -i 's!use lib "checks"!use lib File::Spec->catfile(dirname(File::Spec->rel2abs(__FILE__)), "buck/checks")!' ${D}${bindir}/buck-security
|
|
sed -i 's!use lib "checks/lib"!use lib File::Spec->catfile(dirname(File::Spec->rel2abs(__FILE__)), "buck/checks/lib")!' ${D}${bindir}/buck-security
|
|
sed -i 's!use lib "lib"!use lib File::Spec->catfile(dirname(File::Spec->rel2abs(__FILE__)), "buck/lib")!' ${D}${bindir}/buck-security
|
|
sed -i 's!my $buck_root = "."!my $buck_root = File::Spec->catfile(dirname(File::Spec->rel2abs(__FILE__)), "buck")!' ${D}${bindir}/buck-security
|
|
|
|
}
|
|
|
|
FILES_${PN} = "${bindir}/*"
|
|
|
|
BBCLASSEXTEND = "native"
|