]> git.proxmox.com Git - novnc-pve.git/blob - Makefile
buildsys: make job safety
[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 # fix file permissions
29 chmod 0644 ${NOVNCDIR}/include/jsunzip.js
30 echo "git clone git://git.proxmox.com/git/novnc-pve.git\\ngit checkout ${GITVERSION}" > ${NOVNCDIR}/debian/SOURCE
31 cd ${NOVNCDIR}; dpkg-buildpackage -b -uc -us
32 lintian ${DEB}
33
34 .PHONY: download
35 download:
36 rm -rf ${NOVNCDIR}
37 git clone git://github.com/kanaka/noVNC ${NOVNCDIR}
38 cd ${NOVNCDIR}; git checkout -b local a0e7ab43dca0ce11a713694ee4cf530bd3b17c5a
39 tar czf ${NOVNCSRC} ${NOVNCDIR}
40
41 .PHONY: upload
42 upload: ${DEB}
43 tar cf - ${DEB}|ssh repoman@repo.proxmox.com upload
44
45 .PHONY: distclean
46 distclean: clean
47
48 .PHONY: clean
49 clean:
50 rm -rf *~ debian/*~ *_${ARCH}.deb *_all.deb *.changes *.dsc novnc