blob: acf25a5914fda56341305502ad8f3a3b15097785 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
DESCRIPTION = "The nxssh fork from nomachine"
HOMEPAGE = "http://www.nomachine.com/"
LICENSE = "BSD/OPENSSH"
PR = "r0"
DEPENDS = "openssl libxcomp"
inherit gettext
SRC_URI = "http://64.34.161.181/download/3.4.0/sources/${PN}-${PV}.tar.gz \
file://autotools.patch \
file://stdarg.patch \
file://link.patch \
"
SRC_URI[md5sum] = "18b81d850223ea84de244f8a9509c4b1"
SRC_URI[sha256sum] = "71f88acb6b1135ddd2ea1a172df5dbcf260d2d4c0805f857635ce2acbcf1212e"
S = "${WORKDIR}/${PN}"
inherit autotools gettext
do_install () {
install -d ${D}${bindir}/
install -s -m 0755 nxssh ${D}${bindir}/
}
|