25 lines
647 B
BlitzBasic
25 lines
647 B
BlitzBasic
# Copyright (C) 2022 Vincent BENOIT <vincent.benoit@benserv.fr>
|
|
# Release under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "KineIntercom Services"
|
|
MAINTAINER = "Vincent BENOIT <vincent.benoit@benserv.fr>"
|
|
LICENSE = "CLOSED"
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI = "file://loadkeysfr.service"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
inherit systemd
|
|
|
|
SYSTEMD_AUTO_ENABLE = "enable"
|
|
SYSTEMD_SERVICE_${PN} = "loadkeysfr.service"
|
|
|
|
FILES:${PN} = "${systemd_unitdir}/system/loadkeysfr.service"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${systemd_unitdir}/system/
|
|
install -m 0644 ${WORKDIR}/loadkeysfr.service ${D}${systemd_unitdir}/system/
|
|
}
|