diff options
Diffstat (limited to 'packages/vnc/vnc_3.3.7.bb')
-rw-r--r-- | packages/vnc/vnc_3.3.7.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/vnc/vnc_3.3.7.bb b/packages/vnc/vnc_3.3.7.bb new file mode 100644 index 0000000000..abccb07228 --- /dev/null +++ b/packages/vnc/vnc_3.3.7.bb @@ -0,0 +1,21 @@ +# 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 xmu xaw" +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 +} + |