5
0
mirror of git://git.proxmox.com/git/novnc-pve.git synced 2024-12-22 17:34:20 +03:00
novnc-pve/Makefile

50 lines
1.1 KiB
Makefile
Raw Normal View History

2016-08-03 12:55:17 +03:00
RELEASE=4.2
2014-06-13 09:29:42 +04:00
2014-06-13 11:20:55 +04:00
PACKAGE=novnc-pve
2016-08-03 12:55:17 +03:00
PKGREL=7
2014-06-13 11:20:55 +04:00
2014-06-13 09:29:42 +04:00
NOVNCDIR=novnc
NOVNCSRC=${NOVNCDIR}.tgz
2015-06-25 19:31:57 +03:00
NOVNCVER=0.5
2014-06-13 09:29:42 +04:00
ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
GITVERSION:=$(shell cat .git/refs/heads/master)
2014-06-13 09:29:42 +04:00
2014-06-13 11:20:55 +04:00
DEB=${PACKAGE}_${NOVNCVER}-${PKGREL}_${ARCH}.deb
2014-06-13 09:29:42 +04:00
all: deb
.PHONY: dinstall
dinstall: deb
dpkg -i ${DEB}
.PHONY: deb
deb ${DEB}: ${TARSRC}
rm -rf ${NOVNCDIR}
tar xf ${NOVNCSRC}
cp -a debian ${NOVNCDIR}/debian
cp ${NOVNCDIR}/include/ui.js ${NOVNCDIR}/pveui.js
# fix file permissions
chmod 0644 ${NOVNCDIR}/include/jsunzip.js
echo "git clone git://git.proxmox.com/git/novnc-pve.git\\ngit checkout ${GITVERSION}" > ${NOVNCDIR}/debian/SOURCE
2014-06-13 09:29:42 +04:00
cd ${NOVNCDIR}; dpkg-buildpackage -b -uc -us
lintian ${DEB}
2014-06-13 09:29:42 +04:00
.PHONY: download
download:
rm -rf ${NOVNCDIR}
git clone git://github.com/kanaka/noVNC ${NOVNCDIR}
2015-09-24 13:33:56 +03:00
cd ${NOVNCDIR}; git checkout -b local a0e7ab43dca0ce11a713694ee4cf530bd3b17c5a
2014-06-13 09:29:42 +04:00
tar czf ${NOVNCSRC} ${NOVNCDIR}
.PHONY: upload
upload: ${DEB}
2016-08-03 12:56:30 +03:00
tar cf - ${DEB}|ssh repoman@repo.proxmox.com upload
.PHONY: distclean
distclean: clean
2014-06-13 09:29:42 +04:00
.PHONY: clean
clean:
2014-06-13 11:20:55 +04:00
rm -rf *~ debian/*~ *_${ARCH}.deb *_all.deb *.changes *.dsc novnc