]> git.proxmox.com Git - pve-apiclient.git/blame - Makefile
add APIClient/Exception.pm class
[pve-apiclient.git] / Makefile
CommitLineData
5a3b38c1 1PACKAGE=libpve-apiclient-perl
bf0c1ca6 2PKGVER=2.0
f8dc2eb6 3PKGREL=2
5a3b38c1
DM
4
5DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
6
7DESTDIR=
8
d12f292e
DM
9PERL5DIR=${DESTDIR}/usr/share/perl5
10DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
5a3b38c1
DM
11
12all: ${DEB}
13
14.PHONY: deb
15deb ${DEB}:
16 rm -rf build
17 rsync -a debian build
18 make DESTDIR=./build install
19 cd build; dpkg-buildpackage -rfakeroot -b -us -uc
20 lintian ${DEB}
21
22install:
d12f292e 23 install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm
6700b151 24 install -m 0644 PVE/APIClient/Exception.pm ${PERL5DIR}/PVE/APIClient/Exception.pm
d12f292e
DM
25 install -d -m 755 ${DOCDIR}/examples
26 install -m 0755 examples/example1.pl ${DOCDIR}/examples
8291fb9a 27 install -m 0755 examples/example2.pl ${DOCDIR}/examples
21e68a8a 28 install -m 0755 examples/perftest1.pl ${DOCDIR}/examples
5a3b38c1
DM
29
30.PHONY: upload
31upload: ${DEB}
bf0c1ca6 32 tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist stretch
5a3b38c1
DM
33
34distclean: clean
35
36clean:
9c6d72b1 37 rm -rf ./build *.deb *.changes *.buildinfo
5a3b38c1 38 find . -name '*~' -exec rm {} ';'
2834772d
DM
39
40.PHONY: dinstall
41dinstall: ${DEB}
42 dpkg -i ${DEB}