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)
2014-06-13 11:29:23 +04:00
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 }
2014-06-13 11:29:23 +04:00
cp -a debian ${ NOVNCDIR } /debian
2015-06-25 04:25:18 +03:00
cp ${ NOVNCDIR } /include/ui.js ${ NOVNCDIR } /pveui.js
2014-06-13 11:29:23 +04:00
# 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
2014-08-01 08:43:30 +04:00
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 }
2014-06-13 11:38:05 +04:00
.PHONY : upload
upload : ${DEB }
2016-08-03 12:56:30 +03:00
tar cf - ${ DEB } | ssh repoman@repo.proxmox.com upload
2014-06-13 11:38:05 +04:00
.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