]> git.proxmox.com Git - pve-apiclient.git/blobdiff - Makefile
add make target to copy and include files from pve-common - update Exception.pm
[pve-apiclient.git] / Makefile
index 44f47ae4a75358990d5aa9cb30520b23d6caeda6..ec67f2d5239e5370cba490209a070118eaa1ae9b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,16 @@
 PACKAGE=libpve-apiclient-perl
-PKGVER=1.0
-PKGREL=1
+PKGVER=2.0
+PKGREL=4
 
 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
 
 DESTDIR=
 
-PERL5DIR=/usr/share/perl5
+PERL5DIR=${DESTDIR}/usr/share/perl5
+DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
+
+PVE_COMMON_FILES=              \
+       Exception.pm
 
 all: ${DEB}
 
@@ -19,16 +23,25 @@ deb ${DEB}:
        lintian ${DEB}
 
 install:
-       install -D -m 0644 PVE/APIClient/LWP.pm ${DESTDIR}${PERL5DIR}/PVE/APIClient/LWP.pm
+       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
+
+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 repoman@repo.proxmox.com upload
+       tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist stretch
 
 distclean: clean
 
 clean:
-       rm -rf ./build *.deb *.changes
+       rm -rf ./build *.deb *.changes *.buildinfo
        find . -name '*~' -exec rm {} ';'
 
 .PHONY: dinstall