]> git.proxmox.com Git - pve-http-server.git/blobdiff - Makefile
bump version to 5.1.0
[pve-http-server.git] / Makefile
index 9c838075256510122e4f102c855f97f28a3ec45d..42258cafff5df6cd70fc014a5f4fa71dbca1badb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,95 +1,50 @@
 include /usr/share/dpkg/pkg-info.mk
-include /usr/share/dpkg/architecture.mk
 
 PACKAGE=libpve-http-server-perl
 
 GITVERSION:=$(shell git rev-parse HEAD)
-BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM}
+BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION)
 
-DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
-
-DESTDIR=
-
-PERL5DIR=${DESTDIR}/usr/share/perl5
-DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
-
-WWWBASEDIR=${DESTDIR}/usr/share/${PACKAGE}
-WWWCSSDIR=${WWWBASEDIR}/css
-WWWFONTSDIR=${WWWBASEDIR}/fonts
-WWWJSDIR=${WWWBASEDIR}/js
-
-# bootstrap library
-BTVER=3.4.1
-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.4.1
-JQSRC=jquery-${JQVER}.min.js
+DSC=$(PACKAGE)_$(DEB_VERSION).dsc
+DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb
 
 all:
 
-.PHONY: deb
-deb: ${DEB}
-${DEB}:
-       rm -rf ${BUILDDIR}
-       rsync -a * ${BUILDDIR}
-       echo "git clone git://git.proxmox.com/git/pve-http-server\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE
-       cd ${BUILDDIR}; dpkg-buildpackage -b -us -uc
-       lintian ${DEB}
-
-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}
+$(BUILDDIR): src debian
+       rm -rf $@ $@.tmp
+       cp -a src $@.tmp
+       cp -a debian $@.tmp/
+       echo "git clone git://git.proxmox.com/git/pve-http-server\\ngit checkout $(GITVERSION)" > $@.tmp/debian/SOURCE
+       mv $@.tmp $@
 
-download_jquery:
-       rm -f ${JQSRC} ${JQSRC}.tmp
-       wget https://code.jquery.com/jquery-${JQVER}.min.js -O ${JQSRC}.tmp
-       mv ${JQSRC}.tmp ${JQSRC}
-
-${BTDATA}: ${BTDIR}
-${BTDIR}: ${BTSRC}
-       rm -rf ${BTDIR}
-       unzip -x ${BTSRC}
+.PHONY: deb
+deb: $(DEB)
+$(DEB): $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
+       lintian $(DEB)
 
-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 -m 0644 PVE/APIServer/Utils.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: dsc
+dsc: $(DSC)
+$(DSC): $(BUILDDIR)
+       cd $(BUILDDIR); dpkg-buildpackage -S -us -uc
+       lintian $(DSC)
 
+sbuild: $(DSC)
+       sbuild $(DSC)
 
 .PHONY: upload
-upload: ${DEB}
-       tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist stretch
+upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
+upload: $(DEB)
+       tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg --dist $(UPLOAD_DIST)
 
+.PHONY: clean distclean
 distclean: clean
-       rm -f examples/simple-demo.pem
+       $(MAKE) -C src $@
 
 clean:
-       rm -rf ./build *.deb *.changes *.buildinfo ${BTDIR} examples/simple-demo.lck
-       find . -name '*~' -exec rm {} ';'
+       $(MAKE) -C src $@
+       rm -rf $(PACKAGE)-*/ *.deb *.dsc *.tar.* *.changes *.build *.buildinfo examples/simple-demo.lck
 
 .PHONY: dinstall
-dinstall: ${DEB}
-       dpkg -i ${DEB}
+dinstall: $(DEB)
+       dpkg -i $(DEB)