0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-04-11 14:49:37 +00:00
Files
Yasai-san 266da25648 cec_mini_kb : cec-mini-kb.service is started 1 time only when retroarch.service is activated (#1984)
* Fix endress CEC mini kb service start when it failed

* Retry to (re)start 3 times during 20 sec

* Revert "Retry to (re)start 3 times during 20 sec"

This reverts commit f4d2136a8548cfd5d8698e6106f5d5e4dea1bf6e.
2024-12-04 00:27:04 +02:00

21 lines
565 B
Makefile

# SPDX-License-Identifier: GPL-3.0-or-later
# 2021 Giovanni Cascione
PKG_NAME="cec_mini_kb"
PKG_VERSION="fea75efa52e73b1fc70750e308b153cfba84696f"
PKG_LICENSE="GPLv3"
PKG_SITE="https://github.com/spleen1981/cec-mini-kb"
PKG_URL="${PKG_SITE}/archive/${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain libcec"
PKG_LONGDESC="Small utility to use a CEC remote controller as a mini keyboard"
PKG_TOOLCHAIN="make"
makeinstall_target() {
mkdir -p ${INSTALL}/usr/bin/
cp -v cec-mini-kb ${INSTALL}/usr/bin/
}
post_install() {
enable_service cec-mini-kb.service
}