]> git.proxmox.com Git - pve-installer.git/blob - Makefile
raise postifx main.cf compatibility_level to 2
[pve-installer.git] / Makefile
1 include /usr/share/dpkg/pkg-info.mk
2
3 PVE_DEB=pve-installer_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
4 PMG_DEB=pmg-installer_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
5
6 DEBS = ${PVE_DEB} ${PMG_DEB}
7
8 INSTALLER_SOURCES= \
9 unconfigured.sh \
10 fake-start-stop-daemon \
11 policy-disable-rc.d \
12 interfaces \
13 pmg-banner.png \
14 pve-banner.png \
15 checktime \
16 xinitrc \
17 Xdefaults \
18 country.dat \
19 proxinstall
20
21 HTML_SOURCES=$(wildcard html/*.htm)
22 HTML_COMMON_SOURCES=$(wildcard html-common/*.htm) $(wildcard html-common/*.css) $(wildcard html-common/*.png)
23
24 all: ${INSTALLER_SOURCES} ${HTML_COMMON_SOURCES} ${HTML_SOURCES}
25
26 country.dat: country.pl
27 ./country.pl > country.dat
28
29 deb: ${DEBS}
30 ${DEBS}: ${INSTALLER_SOURCES} ${HTML_COMMON_SOURCES} ${HTML_SOURCES}
31 rsync --exclude='test*.img' -a * build
32 cd build; dpkg-buildpackage -b -us -uc
33 lintian -X man ${PVE_DEB}
34 lintian -X man ${PMG_DEB}
35
36 .phony: install
37 install: ${INSTALLER_SOURCES} ${HTML_COMMON_SOURCES} ${HTML_SOURCES}
38 make -C html-common install
39 install -D -m 644 interfaces ${DESTDIR}/etc/network/interfaces
40 install -D -m 755 fake-start-stop-daemon ${DESTDIR}/var/lib/pve-installer/fake-start-stop-daemon
41 install -D -m 755 policy-disable-rc.d ${DESTDIR}/var/lib/pve-installer/policy-disable-rc.d
42 install -D -m 644 country.dat ${DESTDIR}/var/lib/pve-installer/country.dat
43 install -D -m 755 unconfigured.sh ${DESTDIR}/sbin/unconfigured.sh
44 install -D -m 755 proxinstall ${DESTDIR}/usr/bin/proxinstall
45 install -D -m 755 checktime ${DESTDIR}/usr/bin/checktime
46 install -D -m 644 xinitrc ${DESTDIR}/.xinitrc
47 install -D -m 644 Xdefaults ${DESTDIR}/.Xdefaults
48
49 pmg-banner.png: pmg-banner.svg
50 rsvg-convert -o $@ $<
51
52 pve-banner.png: pve-banner.svg
53 rsvg-convert -o $@ $<
54
55 .phony: upload-pmg
56 upload-pmg: ${PMG_DEB}
57 tar cf - ${PMG_DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pmg --dist stretch
58
59 .phony: upload-pve
60 upload-pve: ${PVE_DEB}
61 tar cf - ${PVE_DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pve --dist buster
62
63 %.img:
64 truncate -s 2G $@
65
66 check-pve: ${PVE_DEB} test.img
67 rm -rf testdir
68 dpkg -X ${PVE_DEB} testdir
69 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
70
71 check-pve-multidisks: ${PVE_DEB} test.img test2.img test3.img test4.img
72 rm -rf testdir
73 dpkg -X ${PVE_DEB} testdir
74 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img,test2.img,test3.img,test4.img
75
76 check-pmg: ${PMG_DEB} test.img
77 rm -rf testdir
78 dpkg -X ${PMG_DEB} testdir
79 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
80
81 .phony: clean
82 clean:
83 make -C html-common clean
84 rm -rf *~ *.deb target build packages packages.tmp testdir test*.img pve-final.pkglist *.buildinfo *.changes country.dat final.pkglist
85 find . -name '*~' -exec rm {} ';'