]> git.proxmox.com Git - novnc-pve.git/blob - Makefile
transpile javascript before packaging
[novnc-pve.git] / Makefile
1 PACKAGE=novnc-pve
2 VER=0.6
3 PKGREL=1
4
5 SRCDIR=novnc
6
7 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
8 GITVERSION:=$(shell cat .git/refs/heads/master)
9
10 DEB=${PACKAGE}_${VER}-${PKGREL}_${ARCH}.deb
11
12 all: ${DEB}
13 @echo ${DEB}
14
15 .PHONY: deb
16 deb: ${DEB}
17 ${DEB}: | submodule
18 rm -rf ${SRCDIR}.tmp
19 cp -rpa ${SRCDIR} ${SRCDIR}.tmp
20 cp -a debian ${SRCDIR}.tmp/
21 echo "git clone git://git.proxmox.com/git/novnc-pve.git\\ngit checkout ${GITVERSION}" > ${SRCDIR}.tmp/debian/SOURCE
22 cd ${SRCDIR}.tmp; dpkg-buildpackage -rfakeroot -b -uc -us
23 lintian ${DEB}
24 @echo ${DEB}
25
26 .PHONY: submodule
27 submodule:
28 test -f "${SRCDIR}/vnc.html" || git submodule update --init
29
30 .PHONY: download
31 download ${SRCDIR}:
32 git submodule foreach 'git pull --ff-only origin master'
33
34 .PHONY: upload
35 upload: ${DEB}
36 tar cf - ${DEB}|ssh -X repoman@repo.proxmox.com -- upload --product pmg,pve --dist stretch
37
38 .PHONY: distclean
39 distclean: clean
40
41 .PHONY: clean
42 clean:
43 rm -rf *~ debian/*~ *_${ARCH}.deb ${SRCDIR}.tmp *_all.deb *.changes *.dsc *.buildinfo
44
45 .PHONY: dinstall
46 dinstall: deb
47 dpkg -i ${DEB}