diff options
author | woglinde <heinold@inf.fu-berlin.de> | 2008-11-28 00:20:50 +0100 |
---|---|---|
committer | woglinde <heinold@inf.fu-berlin.de> | 2008-11-28 00:20:50 +0100 |
commit | 5473b49afefa850c2dc0b40b633f51ae96820563 (patch) | |
tree | 3be02c8b6c8d90b305e7090b112ecbd7d9f5a233 /packages/nxssh/nxssh_3.3.0-1.bb | |
parent | dce11f705f62c2f5a7fa69489ed4b111d6b4d989 (diff) |
nxssh: initial import
Diffstat (limited to 'packages/nxssh/nxssh_3.3.0-1.bb')
-rw-r--r-- | packages/nxssh/nxssh_3.3.0-1.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/nxssh/nxssh_3.3.0-1.bb b/packages/nxssh/nxssh_3.3.0-1.bb new file mode 100644 index 0000000000..b844938e5e --- /dev/null +++ b/packages/nxssh/nxssh_3.3.0-1.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "The nxssh fork from nomachine" +HOMEPAGE = "http://www.nomachine.com/" +LICENSE = "BSD/OPENSSH" +PR = "r0" + +DEPENDS = "openssl libxcomp" + +SRC_URI = "http://64.34.161.181/download/3.3.0/sources/${PN}-${PV}.tar.gz \ + file://autotools.patch;patch=1 \ + file://stdarg.patch;patch=1 \ + file://link.patch;patch=1 \ + " +inherit autotools + +S = "${WORKDIR}/nxssh" + +do_install () { + install -d ${D}${bindir}/ + install -s -m 0755 nxssh ${D}${bindir}/ +} |