]> git.proxmox.com Git - novnc-pve.git/blob - Makefile
generate index.html.tpl from vnc.html
[novnc-pve.git] / Makefile
1 RELEASE=4.2
2
3 PACKAGE=novnc-pve
4 PKGREL=8
5
6 NOVNCDIR=novnc
7 NOVNCSRC=${NOVNCDIR}.tgz
8 NOVNCVER=0.5
9
10 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
11 GITVERSION:=$(shell cat .git/refs/heads/master)
12
13 DEB=${PACKAGE}_${NOVNCVER}-${PKGREL}_${ARCH}.deb
14
15 all: deb
16
17 .PHONY: dinstall
18 dinstall: deb
19 dpkg -i ${DEB}
20
21 .PHONY: deb
22 deb: ${DEB}
23 ${DEB}: ${TARSRC}
24 rm -rf ${NOVNCDIR}
25 tar xf ${NOVNCSRC}
26 cp -a debian ${NOVNCDIR}/debian
27 cp ${NOVNCDIR}/include/ui.js ${NOVNCDIR}/pveui.js
28 cp ${NOVNCDIR}/vnc.html ${NOVNCDIR}/index.html.tpl
29 # fix file permissions
30 chmod 0644 ${NOVNCDIR}/include/jsunzip.js
31 echo "git clone git://git.proxmox.com/git/novnc-pve.git\\ngit checkout ${GITVERSION}" > ${NOVNCDIR}/debian/SOURCE
32 cd ${NOVNCDIR}; dpkg-buildpackage -b -uc -us
33 lintian ${DEB}
34
35 .PHONY: download
36 download:
37 rm -rf ${NOVNCDIR}
38 git clone git://github.com/kanaka/noVNC ${NOVNCDIR}
39 cd ${NOVNCDIR}; git checkout -b local a0e7ab43dca0ce11a713694ee4cf530bd3b17c5a
40 tar czf ${NOVNCSRC} ${NOVNCDIR}
41
42 .PHONY: upload
43 upload: ${DEB}
44 tar cf - ${DEB}|ssh repoman@repo.proxmox.com upload
45
46 .PHONY: distclean
47 distclean: clean
48
49 .PHONY: clean
50 clean:
51 rm -rf *~ debian/*~ *_${ARCH}.deb *_all.deb *.changes *.dsc novnc