pve-apiclient/Makefile

43 lines
1011 B
Makefile
Raw Normal View History

2016-12-16 11:21:41 +03:00
PACKAGE=libpve-apiclient-perl
PKGVER=2.0
2017-04-06 12:04:48 +03:00
PKGREL=2
2016-12-16 11:21:41 +03:00
DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb
DESTDIR=
PERL5DIR=${DESTDIR}/usr/share/perl5
DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE}
2016-12-16 11:21:41 +03:00
all: ${DEB}
.PHONY: deb
deb ${DEB}:
rm -rf build
rsync -a debian build
make DESTDIR=./build install
cd build; dpkg-buildpackage -rfakeroot -b -us -uc
lintian ${DEB}
install:
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
2016-12-28 13:04:37 +03:00
install -m 0755 examples/example2.pl ${DOCDIR}/examples
2016-12-28 13:35:30 +03:00
install -m 0755 examples/perftest1.pl ${DOCDIR}/examples
2016-12-16 11:21:41 +03:00
.PHONY: upload
upload: ${DEB}
tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com upload --product pmg,pve --dist stretch
2016-12-16 11:21:41 +03:00
distclean: clean
clean:
rm -rf ./build *.deb *.changes *.buildinfo
2016-12-16 11:21:41 +03:00
find . -name '*~' -exec rm {} ';'
2016-12-16 11:23:14 +03:00
.PHONY: dinstall
dinstall: ${DEB}
dpkg -i ${DEB}