]> git.proxmox.com Git - pve-guest-common.git/blob - Makefile
buildsys: update make upload target for stretch
[pve-guest-common.git] / Makefile
1 PACKAGE=libpve-guest-common-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:
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 -d ${PERL5DIR}/PVE/VZDump
27 install -m 0644 PVE/VZDump/Plugin.pm ${PERL5DIR}/PVE/VZDump/
28
29 .PHONY: upload
30 upload: ${DEB}
31 tar cf - ${DEB} | ssh repoman@repo.proxmox.com -- upload --product pve --dist stretch
32
33 distclean: clean
34
35 clean:
36 rm -rf ./build *.deb *.changes
37
38 .PHONY: dinstall
39 dinstall: ${DEB}
40 dpkg -i ${DEB}