]> git.proxmox.com Git - pve-guest-common.git/blob - Makefile
PVE::ReplicationConfig::check_for_existing_jobs - new helper
[pve-guest-common.git] / Makefile
1 PACKAGE=libpve-guest-common-perl
2 PKGVER=2.0
3 PKGREL=3
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:
13
14 .PHONY: deb
15 deb: ${DEB}
16 ${DEB}:
17 rm -rf build
18 rsync -a * build
19 cd build; dpkg-buildpackage -b -us -uc
20 lintian ${DEB}
21
22 install: PVE
23 install -d ${PERL5DIR}/PVE
24 install -m 0644 PVE/AbstractConfig.pm ${PERL5DIR}/PVE/
25 install -m 0644 PVE/AbstractMigrate.pm ${PERL5DIR}/PVE/
26 install -m 0644 PVE/ReplicationConfig.pm ${PERL5DIR}/PVE/
27 install -d ${PERL5DIR}/PVE/VZDump
28 install -m 0644 PVE/VZDump/Plugin.pm ${PERL5DIR}/PVE/VZDump/
29
30 .PHONY: upload
31 upload: ${DEB}
32 tar cf - ${DEB} | ssh repoman@repo.proxmox.com -- upload --product pve --dist stretch
33
34 distclean: clean
35
36 clean:
37 rm -rf ./build *.deb *.changes
38
39 .PHONY: dinstall
40 dinstall: ${DEB}
41 dpkg -i ${DEB}