diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-03-01 16:28:47 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-01 16:28:47 +0000 |
commit | 3ac46586645727f3385b3ab8baa51248ba3bc1bf (patch) | |
tree | 6d5456a3b8c7b98431b98ac617715dc2ca27d908 /packages/vnc/tightvnc_1.3dev7.bb | |
parent | cee59f75f31aaad5e026b665fb2a1823107509ff (diff) |
tightvnc_1.3dev7.bb : add tightvnc recipe
Diffstat (limited to 'packages/vnc/tightvnc_1.3dev7.bb')
-rw-r--r-- | packages/vnc/tightvnc_1.3dev7.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/vnc/tightvnc_1.3dev7.bb b/packages/vnc/tightvnc_1.3dev7.bb new file mode 100644 index 0000000000..8866176b8f --- /dev/null +++ b/packages/vnc/tightvnc_1.3dev7.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "A Unix VNC client" +HOMEPAGE = "http://www.tightvnc.com/" +DEPENDS = "x11 zlib xmu xaw" +LICENSE = "GPL" +MAINTAINER = "Graeme Gregory <dp@xora.org.uk>" + +SRC_URI = "${SOURCEFORGE_MIRROR}/vnc-tight/tightvnc-1.3dev7_unixsrc.tar.gz \ + file://Makefile" + +S = ${WORKDIR}/vnc_unixsrc/vncviewer/ + +PACKAGES="tightvncviewer" +FILES_tightvncviewer = "/usr/bin/tightvncviewer" + +do_compile () { + install ${WORKDIR}/Makefile ${S} + oe_runmake +} + +do_install () { + install -d ${D}${bindir} + install tightvncviewer ${D}${bindir} +} + |