mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-06 22:24:40 +02:00
58 lines
1.8 KiB
BlitzBasic
58 lines
1.8 KiB
BlitzBasic
DESCRIPTION = "HTML5 (plugin-free) web-based terminal emulator and SSH client"
|
|
LICENSE = "AGPLv3"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=07d5a2790569bd3e3b422b69ccd43bec"
|
|
|
|
PR = "r13"
|
|
|
|
PV = "0.9"
|
|
SRCREV = "e0e23fae6ee7f1276e27e38f9ca4ac619b292308"
|
|
SRC_URI = "git://github.com/liftoff/GateOne.git \
|
|
file://gateone-avahi.service \
|
|
file://gateone.service \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit distutils allarch systemd
|
|
|
|
export prefix = "${localstatedir}/lib"
|
|
|
|
do_install_append() {
|
|
install -d ${D}${localstatedir}/log/${BPN}
|
|
|
|
install -m 0755 -d ${D}${base_libdir}/systemd/system
|
|
install -m 0644 ${WORKDIR}/gateone.service ${D}${base_libdir}/systemd/system/
|
|
|
|
install -m 0755 -d ${D}${sysconfdir}/avahi/services/
|
|
install -m 0644 ${WORKDIR}/gateone-avahi.service ${D}${sysconfdir}/avahi/services/
|
|
}
|
|
|
|
SYSTEMD_PACKAGES = "${PN}"
|
|
SYSTEMD_SERVICE = "gateone.service"
|
|
|
|
FILES_${PN} = "${localstatedir}/lib ${localstatedir}/log ${base_libdir} ${sysconfdir}"
|
|
RDEPENDS_${PN} = "python-tornado \
|
|
python-datetime \
|
|
python-shell \
|
|
python-subprocess \
|
|
python-terminal \
|
|
python-io \
|
|
python-compression \
|
|
python-syslog \
|
|
python-misc \
|
|
python-crypt \
|
|
python-netclient \
|
|
python-email \
|
|
python-html \
|
|
python-textutils \
|
|
python-pyopenssl \
|
|
findutils \
|
|
python-simplejson \
|
|
python-multiprocessing \
|
|
python-pkgutil \
|
|
python-imaging \
|
|
file \
|
|
openssh-ssh \
|
|
mime-support \
|
|
"
|