blob: 82030e7d87ee88c58b86bd19b96e19abd318354e (
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
|
# vnc OE build file
# Copyright (C) 2004, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
DESCRIPTION = "A Unix VNC client"
HOMEPAGE = "http://www.realvnc.com/"
DEPENDS = "zlib libxmu libxaw"
LICENSE="GPL"
SRC_URI="http://www.realvnc.com/dist/vnc-${PV}-unixsrc.tar.gz"
S="${WORKDIR}/vnc-${PV}-unixsrc"
inherit autotools
EXTRA_OECONF = " --with-installed-zlib"
do_install() {
install -d ${D}/usr/bin/
install -m 0755 vncviewer/vncviewer ${D}/usr/bin/vncviewer
}
SRC_URI[md5sum] = "511ffbc8ed8d9df82e7c67852164728c"
SRC_URI[sha256sum] = "ee1faf72ef745a7d96e44cb4797d92a8cd2c9e290dfe602fae0fd955a11d4f3a"
|