]> git.proxmox.com Git - pve-http-server.git/blobdiff - Makefile
bump version to 1.0-2
[pve-http-server.git] / Makefile
index bd4085b8453db0b50ab4c733a33fab60bdf22781..9e6e9678f33e2c80d2a0a2e526fc6f1e0d1c668b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 PACKAGE=libpve-http-server-perl
 PKGVER=1.0
-PKGREL=1
+PKGREL=2
 
 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
 
@@ -9,19 +9,68 @@ DESTDIR=
 PERL5DIR=${DESTDIR}/usr/share/perl5
 DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
 
-all: ${DEB}
+WWWBASEDIR=${DESTDIR}/usr/share/${PACKAGE}
+WWWCSSDIR=${WWWBASEDIR}/css
+WWWFONTSDIR=${WWWBASEDIR}/fonts
+WWWJSDIR=${WWWBASEDIR}/js
+
+# bootstrap library
+BTVER=3.3.7
+BTDIR=bootstrap-${BTVER}-dist
+BTSRC=${BTDIR}.zip
+
+BTDATA =                                                       \
+       ${BTDIR}/css/bootstrap.min.css                          \
+       ${BTDIR}/css/bootstrap-theme.min.css                    \
+       ${BTDIR}/js/bootstrap.min.js                            \
+       ${BTDIR}/fonts/glyphicons-halflings-regular.ttf
+
+JQVER=3.3.1
+JQSRC=jquery-${JQVER}.min.js
+
+all:
 
 .PHONY: deb
 deb ${DEB}:
        rm -rf build
-       rsync -a debian build
-       make DESTDIR=./build install
-       cd build; dpkg-buildpackage -rfakeroot -b -us -uc
+       rsync -a * build
+       cd build; dpkg-buildpackage -b -us -uc
        lintian ${DEB}
 
-install:
-       install -d -m 755 ${PERL5DIR}/PVE/
-       install -m 0644 PVE/AsyncHTTPServer.pm ${PERL5DIR}/PVE
+download_bootstrap:
+       rm -f ${BTSRC}$ ${BTSRC}.tmp
+       wget https://github.com/twbs/bootstrap/releases/download/v${BTVER}/${BTSRC} -O ${BTSRC}.tmp
+       mv ${BTSRC}.tmp ${BTSRC}
+
+download_jquery:
+       rm -f ${JQSRC} ${JQSRC}.tmp
+       wget https://code.jquery.com/jquery-3.1.1.min.js -O ${JQSRC}.tmp
+       mv ${JQSRC}.tmp ${JQSRC}
+
+${BTDATA}: ${BTSRC}
+       rm -rf ${BTDIR}
+       unzip -x ${BTSRC}
+       touch $@
+
+install: ${BTDATA}
+       install -d -m 755 ${PERL5DIR}/PVE/APIServer
+       install -m 0644 PVE/APIServer/AnyEvent.pm ${PERL5DIR}/PVE/APIServer
+       install -m 0644 PVE/APIServer/Formatter.pm ${PERL5DIR}/PVE/APIServer
+       install -d -m 755 ${PERL5DIR}/PVE/APIServer/Formatter
+       install -m 0644 PVE/APIServer/Formatter/Standard.pm ${PERL5DIR}/PVE/APIServer/Formatter
+       install -m 0644 PVE/APIServer/Formatter/Bootstrap.pm ${PERL5DIR}/PVE/APIServer/Formatter
+       install -m 0644 PVE/APIServer/Formatter/HTML.pm ${PERL5DIR}/PVE/APIServer/Formatter
+       # install bootstrap and jquery
+       install -d -m 755 ${WWWBASEDIR}
+       install -d -m 755 ${WWWCSSDIR}
+       install -m 0644 -o www-data -g www-data ${BTDIR}/css/bootstrap.min.css ${WWWCSSDIR}
+       install -m 0644 -o www-data -g www-data ${BTDIR}/css/bootstrap-theme.min.css ${WWWCSSDIR}
+       install -d -m 755 ${WWWJSDIR}
+       install -m 0644 -o www-data -g www-data ${BTDIR}/js/bootstrap.min.js ${WWWJSDIR}
+       install -m 0644 -o www-data -g www-data ${JQSRC} ${WWWJSDIR}
+       install -d -m 755 ${WWWFONTSDIR}
+       install -m 0644 ${BTDIR}/fonts/glyphicons-halflings-regular.ttf ${WWWFONTSDIR}
+
 
 .PHONY: upload
 upload: ${DEB}
@@ -30,7 +79,7 @@ upload: ${DEB}
 distclean: clean
 
 clean:
-       rm -rf ./build *.deb *.changes
+       rm -rf ./build *.deb *.changes ${BTDIR} simple-demo.pem simple-demo.lck
        find . -name '*~' -exec rm {} ';'
 
 .PHONY: dinstall