]> git.proxmox.com Git - novnc-pve.git/commitdiff
initial import
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 13 Jun 2014 05:29:42 +0000 (07:29 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 13 Jun 2014 05:29:42 +0000 (07:29 +0200)
Makefile [new file with mode: 0644]
novnc.tgz [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..1d6ff76
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,28 @@
+RELEASE=3.2
+
+NOVNCDIR=novnc
+NOVNCSRC=${NOVNCDIR}.tgz
+
+ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
+
+all: deb
+
+.PHONY: dinstall
+dinstall: deb
+       dpkg -i ${DEB}
+
+.PHONY: deb
+deb ${DEB}: ${TARSRC}
+       rm -rf ${NOVNCDIR}
+       tar xf ${NOVNCSRC}
+       cd ${NOVNCDIR}; dpkg-buildpackage -b -uc -us
+
+.PHONY: download
+download:
+       rm -rf ${NOVNCDIR}
+       git clone git://github.com/kanaka/noVNC ${NOVNCDIR}
+       tar czf ${NOVNCSRC} ${NOVNCDIR}
+
+.PHONY: clean
+clean:
+       rm -rf *~ *_${ARCH}.deb *_all.deb *.changes *.dsc novnc 
diff --git a/novnc.tgz b/novnc.tgz
new file mode 100644 (file)
index 0000000..14c6334
Binary files /dev/null and b/novnc.tgz differ