1 PACKAGE=libpve-apiclient-perl
2 PKGVER=$(shell dpkg-parsechangelog -Sversion | cut -d- -f1)
3 PKGREL=$(shell dpkg-parsechangelog -Sversion | cut -d- -f2)
5 BUILDSRC := $(PACKAGE)-$(PKGVER)
6 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
7 DSC=${PACKAGE}_${PKGVER}-${PKGREL}.dsc
11 PERL5DIR=${DESTDIR}/usr/share/perl5
12 DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
17 GITVERSION:=$(shell git rev-parse HEAD)
24 rsync -a debian $(BUILDSRC)
25 make DESTDIR=./$(BUILDSRC) install
26 echo "git clone git://git.proxmox.com/git/pve-apiclient.git\\ngit checkout ${GITVERSION}" > $(BUILDSRC)/debian/SOURCE
29 deb ${DEB}: $(BUILDSRC)
30 cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
35 cd $(BUILDSRC); dpkg-buildpackage -S -us -uc -d -nc
39 install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm
40 install -m 0644 PVE/APIClient/Exception.pm ${PERL5DIR}/PVE/APIClient/Exception.pm
41 install -d -m 755 ${DOCDIR}/examples
42 install -m 0755 examples/example1.pl ${DOCDIR}/examples
43 install -m 0755 examples/example2.pl ${DOCDIR}/examples
44 install -m 0755 examples/perftest1.pl ${DOCDIR}/examples
47 for i in ${PVE_COMMON_FILES}; do cp ../pve-common/src/PVE/$$i PVE/APIClient/; done
48 for i in ${PVE_COMMON_FILES}; do sed -i 's/PVE::/PVE::APIClient::/g' PVE/APIClient/$$i; done
52 tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist buster
57 rm -rf ./$(BUILDSRC) *.deb *.changes *.buildinfo *.dsc *.tar.gz
58 find . -name '*~' -exec rm {} ';'