mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 20:07:25 +00:00
f39f9057f7
License is still AGPL-3 the checksum changed due to 1.0rc -> 1.0 Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
57 lines
1.8 KiB
BlitzBasic
57 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=ee5b168fc7de89a0cadc49e27830aa2c"
|
|
|
|
PV = "1.0"
|
|
SRCREV = "0dfa4196ca514e075199c0dbf849353c6aa2976b"
|
|
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}${systemd_unitdir}/system
|
|
install -m 0644 ${WORKDIR}/gateone.service ${D}${systemd_unitdir}/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 \
|
|
python-xml \
|
|
file \
|
|
openssh-ssh \
|
|
mime-support \
|
|
"
|