]> git.proxmox.com Git - pve-apiclient.git/blob - Makefile
79478808196f761b92dc8a79ae30f43993b992eb
[pve-apiclient.git] / Makefile
1 PACKAGE=libpve-apiclient-perl
2 PKGVER=1.0
3 PKGREL=2
4
5 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
6
7 DESTDIR=
8
9 PERL5DIR=${DESTDIR}/usr/share/perl5
10 DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
11
12 all: ${DEB}
13
14 .PHONY: deb
15 deb ${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
22 install:
23 install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm
24 install -d -m 755 ${DOCDIR}/examples
25 install -m 0755 examples/example1.pl ${DOCDIR}/examples
26 install -m 0755 examples/example2.pl ${DOCDIR}/examples
27 install -m 0755 examples/perftest1.pl ${DOCDIR}/examples
28
29 .PHONY: upload
30 upload: ${DEB}
31 tar cf - ${DEB} | ssh repoman@repo.proxmox.com upload
32
33 distclean: clean
34
35 clean:
36 rm -rf ./build *.deb *.changes
37 find . -name '*~' -exec rm {} ';'
38
39 .PHONY: dinstall
40 dinstall: ${DEB}
41 dpkg -i ${DEB}