]> git.proxmox.com Git - pve-http-server.git/blob - Makefile
Add configurable 'compression'
[pve-http-server.git] / Makefile
1 PACKAGE=libpve-http-server-perl
2 PKGVER=2.0
3 PKGREL=11
4
5 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
6
7 DESTDIR=
8
9 PERL5DIR=${DESTDIR}/usr/share/perl5
10 DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
11
12 WWWBASEDIR=${DESTDIR}/usr/share/${PACKAGE}
13 WWWCSSDIR=${WWWBASEDIR}/css
14 WWWFONTSDIR=${WWWBASEDIR}/fonts
15 WWWJSDIR=${WWWBASEDIR}/js
16
17 # bootstrap library
18 BTVER=3.3.7
19 BTDIR=bootstrap-${BTVER}-dist
20 BTSRC=${BTDIR}.zip
21
22 BTDATA = \
23 ${BTDIR}/css/bootstrap.min.css \
24 ${BTDIR}/css/bootstrap-theme.min.css \
25 ${BTDIR}/js/bootstrap.min.js \
26 ${BTDIR}/fonts/glyphicons-halflings-regular.ttf
27
28 JQVER=3.3.1
29 JQSRC=jquery-${JQVER}.min.js
30
31 all:
32
33 .PHONY: deb
34 deb: ${DEB}
35 ${DEB}:
36 rm -rf build
37 rsync -a * build
38 cd build; dpkg-buildpackage -b -us -uc
39 lintian ${DEB}
40
41 download_bootstrap:
42 rm -f ${BTSRC}$ ${BTSRC}.tmp
43 wget https://github.com/twbs/bootstrap/releases/download/v${BTVER}/${BTSRC} -O ${BTSRC}.tmp
44 mv ${BTSRC}.tmp ${BTSRC}
45
46 download_jquery:
47 rm -f ${JQSRC} ${JQSRC}.tmp
48 wget https://code.jquery.com/jquery-3.1.1.min.js -O ${JQSRC}.tmp
49 mv ${JQSRC}.tmp ${JQSRC}
50
51 ${BTDATA}: ${BTSRC}
52 rm -rf ${BTDIR}
53 unzip -x ${BTSRC}
54 touch $@
55
56 install: ${BTDATA}
57 install -d -m 755 ${PERL5DIR}/PVE/APIServer
58 install -m 0644 PVE/APIServer/AnyEvent.pm ${PERL5DIR}/PVE/APIServer
59 install -m 0644 PVE/APIServer/Formatter.pm ${PERL5DIR}/PVE/APIServer
60 install -d -m 755 ${PERL5DIR}/PVE/APIServer/Formatter
61 install -m 0644 PVE/APIServer/Formatter/Standard.pm ${PERL5DIR}/PVE/APIServer/Formatter
62 install -m 0644 PVE/APIServer/Formatter/Bootstrap.pm ${PERL5DIR}/PVE/APIServer/Formatter
63 install -m 0644 PVE/APIServer/Formatter/HTML.pm ${PERL5DIR}/PVE/APIServer/Formatter
64 # install bootstrap and jquery
65 install -d -m 755 ${WWWBASEDIR}
66 install -d -m 755 ${WWWCSSDIR}
67 install -m 0644 -o www-data -g www-data ${BTDIR}/css/bootstrap.min.css ${WWWCSSDIR}
68 install -m 0644 -o www-data -g www-data ${BTDIR}/css/bootstrap-theme.min.css ${WWWCSSDIR}
69 install -d -m 755 ${WWWJSDIR}
70 install -m 0644 -o www-data -g www-data ${BTDIR}/js/bootstrap.min.js ${WWWJSDIR}
71 install -m 0644 -o www-data -g www-data ${JQSRC} ${WWWJSDIR}
72 install -d -m 755 ${WWWFONTSDIR}
73 install -m 0644 ${BTDIR}/fonts/glyphicons-halflings-regular.ttf ${WWWFONTSDIR}
74
75
76 .PHONY: upload
77 upload: ${DEB}
78 tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist stretch
79
80 distclean: clean
81 rm -f examples/simple-demo.pem
82
83 clean:
84 rm -rf ./build *.deb *.changes *.buildinfo ${BTDIR} examples/simple-demo.lck
85 find . -name '*~' -exec rm {} ';'
86
87 .PHONY: dinstall
88 dinstall: ${DEB}
89 dpkg -i ${DEB}