mirror of
git://git.yoctoproject.org/meta-intel
synced 2026-01-01 13:58:05 +00:00
Use the convert-overrides.py to convert to new syntax and manually fix some additional changes. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
73 lines
2.4 KiB
BlitzBasic
73 lines
2.4 KiB
BlitzBasic
SUMMARY = "Intel Dynamic Application Loader (DAL) Host Interface"
|
|
DESCRIPTION = "A daemon and libraries which allow user space applications \
|
|
to install Java applets on DAL FW and communicate with them"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=833126f14614a3276708a4d7c9734645"
|
|
|
|
SRC_URI = "git://github.com/intel/dynamic-application-loader-host-interface.git;protocol=https"
|
|
|
|
inherit cmake useradd systemd pkgconfig update-rc.d
|
|
|
|
SRCREV = "4c9ef52bcd55fa03b30ac323e553a05be858d41e"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS += "util-linux libxml2"
|
|
DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
|
|
RDEPENDS:${PN} += "bash"
|
|
|
|
USERADD_PACKAGES = "${PN}"
|
|
USERADD_PARAM:${PN} = "--system --no-create-home --shell /bin/false -g mei jhi"
|
|
|
|
GROUPADD_PARAM:${PN} = "-g 880 mei"
|
|
|
|
COMPATIBLE_HOST:libc-musl = 'null'
|
|
|
|
SYSTEMD_SERVICE:${PN} = "jhi.service"
|
|
|
|
INITSCRIPT_PACKAGES = "${PN}"
|
|
INITSCRIPT_NAME:${PN} = "${PN}"
|
|
INITSCRIPT_PARAMS:${PN} = "defaults"
|
|
|
|
# systemd is the default so they are installed when sysvinit is not selected as INIT_SYSTEM
|
|
EXTRA_OECMAKE = "-DCMAKE_SKIP_RPATH=ON \
|
|
-DINIT_SYSTEM=${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'SysVinit', 'systemd', d)} \
|
|
-DAPPLETS_DIR=${libdir}/dal/applets \
|
|
-DAPP_REPO_DIR=${localstatedir}/cache/dal/applet_repository \
|
|
"
|
|
|
|
do_install:append () {
|
|
install -d ${D}${localstatedir}/cache/dal/applet_repository
|
|
|
|
chown -R jhi ${D}${localstatedir}/cache/dal/applet_repository
|
|
chgrp -R mei ${D}${localstatedir}/cache/dal/applet_repository
|
|
|
|
install -d ${D}${bindir}
|
|
install -m 755 ${B}/bin_linux/smoketest ${D}${bindir}
|
|
install -m 755 ${B}/bin_linux/bist ${D}${bindir}
|
|
|
|
install -d ${D}${libdir}/dal/applets
|
|
cp -r ${S}/test/smoketest/applets/* ${D}${libdir}/dal/applets/
|
|
}
|
|
|
|
PACKAGES += "${PN}-test"
|
|
|
|
FILES:${PN}-dev = ""
|
|
|
|
FILES:${PN} = "\
|
|
${sbindir} \
|
|
${sysconfdir} \
|
|
${libdir}/lib*${SOLIBSDEV} \
|
|
${libdir}/dal/applets/SpoolerApplet.dalp \
|
|
${nonarch_libdir}/tmpfiles.d \
|
|
${systemd_system_unitdir} \
|
|
${localstatedir}/cache/dal/applet_repository \
|
|
"
|
|
|
|
FILES:${PN}-test = "\
|
|
${bindir} \
|
|
${libdir}/dal/applets \
|
|
"
|
|
|
|
UPSTREAM_CHECK_COMMITS = "1"
|