mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 11:38:34 +00:00
* as oe-core did in: https://git.openembedded.org/openembedded-core/commit/?id=d4c346e8ab * when people are have to maintain own PRs for recipes in oe-core, they might add them for meta-oe recipes at the same time when upgrading to next LTS Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
39 lines
1.1 KiB
BlitzBasic
39 lines
1.1 KiB
BlitzBasic
SUMMARY = "Console mouse driver"
|
|
DESCRIPTION = "GPM (General Purpose Mouse) is a mouse server \
|
|
for the console and xterm, with sample clients included \
|
|
(emacs, etc)."
|
|
HOMEPAGE = "https://www.nico.schottelius.org/software/gpm"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760"
|
|
|
|
PV = "1.99.7+git${SRCREV}"
|
|
SRCREV = "e82d1a653ca94aa4ed12441424da6ce780b1e530"
|
|
|
|
DEPENDS = "ncurses bison-native"
|
|
|
|
SRC_URI = "git://github.com/telmich/gpm;protocol=https;branch=master \
|
|
file://init \
|
|
file://gpm.service.in \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools-brokensep update-rc.d systemd texinfo
|
|
|
|
INITSCRIPT_NAME = "gpm"
|
|
INITSCRIPT_PARAMS = "defaults"
|
|
|
|
do_configure:prepend() {
|
|
(cd ${S};./autogen.sh;cd -)
|
|
}
|
|
|
|
do_install:append () {
|
|
install -d ${D}${systemd_system_unitdir}
|
|
sed 's:@bindir@:${sbindir}:' < ${WORKDIR}/gpm.service.in >${D}${systemd_system_unitdir}/gpm.service
|
|
install -D -m 0755 ${WORKDIR}/init ${D}${INIT_D_DIR}/gpm
|
|
ln -s libgpm.so.2 ${D}${libdir}/libgpm.so
|
|
}
|
|
|
|
SYSTEMD_SERVICE:${PN} = "gpm.service"
|