blob: 68eb61416b11036bd5ebab361508fbdb47dc4dfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "The binary which uses libxcomp from nomachine"
HOMEPAGE = "http://www.nomachine.com/"
LICENSE = "GPL"
PR = "r1"
DEPENDS = "libxcomp"
SRC_URI = "http://64.34.161.181/download/3.2.0/sources/${PN}-${PV}.tar.gz \
file://stdin.patch;patch=1 \
"
inherit autotools
S = "${WORKDIR}/nxproxy"
do_install () {
install -d ${D}${bindir}/
install -m 0755 nxproxy ${D}${bindir}/
}
|