diff options
Diffstat (limited to 'packages/nxproxy')
-rw-r--r-- | packages/nxproxy/nxproxy_3.3.0-2.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/nxproxy/nxproxy_3.3.0-2.bb b/packages/nxproxy/nxproxy_3.3.0-2.bb new file mode 100644 index 0000000000..f21af2b142 --- /dev/null +++ b/packages/nxproxy/nxproxy_3.3.0-2.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "The binary which uses libxcomp from nomachine" +HOMEPAGE = "http://www.nomachine.com/" +LICENSE = "GPL" +PR = "r0" + +DEPENDS = "libxcomp" + +SRC_URI = "http://64.34.161.181/download/3.3.0/sources/${PN}-${PV}.tar.gz \ + " +inherit autotools + +S = "${WORKDIR}/nxproxy" + +do_install () { + install -d ${D}${bindir}/ + install -s -m 0755 nxproxy ${D}${bindir}/ +} |