X-Git-Url: https://git.proxmox.com/?p=pve-apiclient.git;a=blobdiff_plain;f=Makefile;h=08b1ce4ba77109c2025a16cbdab02bfff37a36b6;hp=7267b3d94acc26dc636d23a5be0924eaafad72db;hb=8291fb9a6e6bd08cce62bd2bbc9adf9ea417bccd;hpb=5a3b38c15d53233b83775e50e5b55c29de1e70ad diff --git a/Makefile b/Makefile index 7267b3d..08b1ce4 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,13 @@ PACKAGE=libpve-apiclient-perl PKGVER=1.0 -PKGREL=1 +PKGREL=2 DEB=${PACKAGE}_${PKGVER}-${PKGREL}_all.deb DESTDIR= -PERL5DIR=/usr/share/perl5 +PERL5DIR=${DESTDIR}/usr/share/perl5 +DOCDIR=${DESTDIR}/usr/share/doc/${PACKAGE} all: ${DEB} @@ -19,7 +20,10 @@ deb ${DEB}: lintian ${DEB} install: - install -D -m 0644 PVE/APIClient/LWP.pm ${DESTDIR}${PERL5DIR}/PVE/APIClient/LWP.pm + install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm + install -d -m 755 ${DOCDIR}/examples + install -m 0755 examples/example1.pl ${DOCDIR}/examples + install -m 0755 examples/example2.pl ${DOCDIR}/examples .PHONY: upload upload: ${DEB} @@ -30,3 +34,7 @@ distclean: clean clean: rm -rf ./build *.deb *.changes find . -name '*~' -exec rm {} ';' + +.PHONY: dinstall +dinstall: ${DEB} + dpkg -i ${DEB}