]> git.proxmox.com Git - pve-apiclient.git/blobdiff - Makefile
Add "make dsc" target
[pve-apiclient.git] / Makefile
index 03c9f65c6c6f9956e4b39f8a44b6a1624a8058e3..7401d08da273510ab459dd62ddbd2285ef9e49be 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,24 +1,38 @@
 PACKAGE=libpve-apiclient-perl
 PKGVER=2.0
-PKGREL=3
+PKGREL=4
 
+BUILDSRC := $(PACKAGE)-$(PKGVER)
 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
+DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc
 
 DESTDIR=
 
 PERL5DIR=${DESTDIR}/usr/share/perl5
 DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
 
+PVE_COMMON_FILES=              \
+       Exception.pm
+
+
 all: ${DEB}
 
+.PHONY: $(BUILDSRC)
+$(BUILDSRC):
+       rm -rf $(BUILDSRC)
+       rsync -a debian $(BUILDSRC)
+       make DESTDIR=./$(BUILDSRC) install
+
 .PHONY: deb
-deb ${DEB}:
-       rm -rf build
-       rsync -a debian build
-       make DESTDIR=./build install
-       cd build; dpkg-buildpackage -rfakeroot -b -us -uc
+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 -m 0644 PVE/APIClient/Exception.pm ${PERL5DIR}/PVE/APIClient/Exception.pm
@@ -27,6 +41,10 @@ install:
        install -m 0755 examples/example2.pl ${DOCDIR}/examples
        install -m 0755 examples/perftest1.pl ${DOCDIR}/examples
 
+update-pve-common:
+       for i in ${PVE_COMMON_FILES}; do cp ../pve-common/src/PVE/$$i PVE/APIClient/; done
+       for i in ${PVE_COMMON_FILES}; do sed -i 's/PVE::/PVE::APIClient::/g' PVE/APIClient/$$i; done
+
 .PHONY: upload
 upload: ${DEB}
        tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist stretch
@@ -34,7 +52,7 @@ upload: ${DEB}
 distclean: clean
 
 clean:
-       rm -rf ./build *.deb *.changes *.buildinfo
+       rm -rf ./$(BUILDSRC) *.deb *.changes *.buildinfo *.dsc *.tar.gz
        find . -name '*~' -exec rm {} ';'
 
 .PHONY: dinstall