X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Makefile;h=3d224a980dc272d990596d9ca3f6d0b133397bd6;hb=7147fbfef70dde674e4dc409b8e2aa5b9589ca8b;hp=35a55cca329eb8bd96cdad3e0b9d3e410f4fc00c;hpb=bf0c1ca60697edbc5a6d8a6a4635f3a253d10213;p=pve-apiclient.git diff --git a/Makefile b/Makefile index 35a55cc..3d224a9 100644 --- a/Makefile +++ b/Makefile @@ -1,41 +1,53 @@ +include /usr/share/dpkg/default.mk + PACKAGE=libpve-apiclient-perl -PKGVER=2.0 -PKGREL=1 -DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb +BUILDSRC := $(PACKAGE)-$(DEB_VERSION) +DEB=$(PACKAGE)_$(DEB_VERSION)_all.deb +DSC=$(PACKAGE)_$(DEB_VERSION).dsc DESTDIR= +PERL5DIR=$(DESTDIR)/usr/share/perl5 +DOCDIR=$(DESTDIR)/usr/share/doc/$(PACKAGE) + +GITVERSION:=$(shell git rev-parse HEAD) -PERL5DIR=${DESTDIR}/usr/share/perl5 -DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE} +all: $(DEB) -all: ${DEB} +.PHONY: $(BUILDSRC) +$(BUILDSRC): + rm -rf $(BUILDSRC) + rsync -a debian $(BUILDSRC) + make DESTDIR=./$(BUILDSRC) install + echo "git clone git://git.proxmox.com/git/pve-apiclient.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE .PHONY: deb -deb ${DEB}: - rm -rf build - rsync -a debian build - make DESTDIR=./build install - cd build; dpkg-buildpackage -rfakeroot -b -us -uc - lintian ${DEB} +deb $(DEB): $(BUILDSRC) + cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc + lintian $(DEB) + +.PHONY: dsc +dsc: $(BUILDSRC) + cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc + lintian $(DSC) install: - install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm - install -d -m 755 ${DOCDIR}/examples - install -m 0755 examples/example1.pl ${DOCDIR}/examples - install -m 0755 examples/example2.pl ${DOCDIR}/examples - install -m 0755 examples/perftest1.pl ${DOCDIR}/examples + install -D -m 0644 PVE/APIClient/LWP.pm $(PERL5DIR)/PVE/APIClient/LWP.pm + install -m 0644 PVE/APIClient/Exception.pm $(PERL5DIR)/PVE/APIClient/Exception.pm + install -d -m 755 $(DOCDIR)/examples + install -m 0755 examples/example1.pl $(DOCDIR)/examples + install -m 0755 examples/example2.pl $(DOCDIR)/examples + install -m 0755 examples/perftest1.pl $(DOCDIR)/examples .PHONY: upload -upload: ${DEB} - tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist stretch +upload: $(DEB) + tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist bullseye distclean: clean clean: - rm -rf ./build *.deb *.changes - find . -name '*~' -exec rm {} ';' + rm -rf ./$(BUILDSRC) *.deb *.changes *.buildinfo *.dsc *.tar.gz .PHONY: dinstall -dinstall: ${DEB} - dpkg -i ${DEB} +dinstall: $(DEB) + dpkg -i $(DEB)