pve-apiclient/Makefile

50 lines
1.2 KiB
Makefile
Raw Normal View History

2016-12-16 11:21:41 +03:00
PACKAGE=libpve-apiclient-perl
PKGVER=2.0
PKGREL=4
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
PVE_COMMON_FILES= \
Exception.pm
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
update-pve-common:
for i in ${PVE_COMMON_FILES}; do cp ../pve-common/src/PVE/$$i PVE/APIClient/; done
for i in ${PVE_COMMON_FILES}; do sed -i 's/PVE::/PVE::APIClient::/g' PVE/APIClient/$$i; done
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}