blob: 82229f9be8f845a033f8de3ecdf7c58b0f4e4350 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 -m 0755 nxproxy ${D}${bindir}/
}
|