mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
8caa8a3d12
Also fixed --with-libxml2=no case in configure.ac The CF3_WITH_LIBRARY and AC_CHECK_HEADERS were moved to outside of the check for with-libxml2=no This fix is already merged in cfengine master but will need some time to cherry-pick and arrive in a 3.21.x LTS release. Ticket: CFE-4023 Changelog: title Signed-off-by: Craig Comstock <craig@unreasonablefarm.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
41 lines
1.3 KiB
BlitzBasic
41 lines
1.3 KiB
BlitzBasic
#
|
|
# Copyright (C) 2014 - 2017 Wind River Systems, Inc.
|
|
#
|
|
SUMMARY = "Base policy for CFEngine"
|
|
|
|
DESCRIPTION = "CFEngine is an IT infrastructure automation framework \
|
|
that helps engineers, system administrators and other stakeholders \
|
|
in an IT system to manage and understand IT infrastructure throughout \
|
|
its lifecycle. CFEngine takes systems from Build to Deploy, Manage and Audit. \
|
|
\
|
|
This package is intended to provide a stable base policy for \
|
|
installations and upgrades, and is used by CFEngine 3.6 and newer. \
|
|
\
|
|
The contents of this packge are intended to live in `/var/cfengine/masterfiles` \
|
|
or wherever `$(sys.masterdir)` points. \
|
|
"
|
|
|
|
HOMEPAGE = "http://cfengine.com"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=bb843e794feb6890f7697637b461c36e"
|
|
|
|
SRC_URI = "https://cfengine-package-repos.s3.amazonaws.com/tarballs/${BP}.tar.gz \
|
|
"
|
|
#SRC_URI[md5sum] = "5df2f85c75efc351ffadebcc11046a98"
|
|
SRC_URI[sha256sum] = "013ebe68599915cedb4bf753b471713d91901a991623358b9a967d9a779bcc16"
|
|
|
|
inherit autotools
|
|
|
|
export EXPLICIT_VERSION="${PV}"
|
|
|
|
EXTRA_OECONF = "--prefix=${datadir}/cfengine"
|
|
|
|
do_install:append() {
|
|
rm -rf ${D}${datadir}/cfengine/modules/packages/zypper ${D}${datadir}/cfengine/modules/packages/yum
|
|
}
|
|
|
|
FILES:${PN} = "${datadir}/cfengine"
|
|
|
|
RDEPENDS:${PN} += "python3-core"
|