]> git.proxmox.com Git - pve-apiclient.git/blobdiff - Makefile
add APIClient/Exception.pm class
[pve-apiclient.git] / Makefile
index 44f47ae4a75358990d5aa9cb30520b23d6caeda6..9dcbddec2c2ae18c9db1ce7e03e337b8434d09bc 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,13 @@
 PACKAGE=libpve-apiclient-perl
-PKGVER=1.0
-PKGREL=1
+PKGVER=2.0
+PKGREL=2
 
 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
 
 DESTDIR=
 
-PERL5DIR=/usr/share/perl5
+PERL5DIR=${DESTDIR}/usr/share/perl5
+DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
 
 all: ${DEB}
 
@@ -19,16 +20,21 @@ 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
 
 .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