]> git.proxmox.com Git - pve-installer.git/blob - Makefile
buildsys: add DSC & sbuild convenience target
[pve-installer.git] / Makefile
1 include /usr/share/dpkg/default.mk
2
3 PACKAGE = proxmox-installer
4 BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
5
6 DEB=$(PACKAGE)_$(DEB_VERSION)_$(DEB_HOST_ARCH).deb
7 DSC=$(PACKAGE)_$(DEB_VERSION).dsc
8
9 CARGO ?= cargo
10 ifeq ($(BUILD_MODE), release)
11 CARGO_BUILD_ARGS += --release
12 CARGO_COMPILEDIR := target/release
13 else
14 CARGO_COMPILEDIR := target/debug
15 endif
16
17 INSTALLER_SOURCES=$(shell git ls-files) country.dat
18
19 PREFIX = /usr
20 BINDIR = $(PREFIX)/bin
21 USR_BIN := proxmox-tui-installer
22
23 COMPILED_BINS := \
24 $(addprefix $(CARGO_COMPILEDIR)/,$(USR_BIN))
25
26 all:
27
28 $(BUILDDIR):
29 rm -rf $@ $@.tmp; mkdir $@.tmp
30 cp -a \
31 Cargo.toml \
32 Makefile \
33 Proxmox/ \
34 Xdefaults \
35 banner/ \
36 checktime \
37 country.pl \
38 fake-start-stop-daemon \
39 html/ \
40 interfaces \
41 policy-disable-rc.d \
42 proxinstall \
43 proxmox-low-level-installer \
44 proxmox-tui-installer/ \
45 spice-vdagent.sh \
46 unconfigured.sh \
47 xinitrc \
48 $@.tmp
49 cp -a debian $@.tmp/
50 mv $@.tmp $@
51
52 country.dat: country.pl
53 ./country.pl > country.dat.tmp
54 mv country.dat.tmp country.dat
55
56 deb: $(DEB)
57 $(DEB): $(BUILDDIR)
58 cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
59 lintian $(DEB)
60
61 test-$(DEB): $(INSTALLER_SOURCES)
62 rsync --exclude='test*.img' -a * build
63 cd build; dpkg-buildpackage -b -us -uc -nc
64 mv $(DEB) test-$(DEB)
65
66 dsc: $(DSC)
67 $(MAKE) clean
68 $(MAKE) $(DSC)
69 lintian $(DSC)
70
71 $(DSC): $(BUILDDIR)
72 cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
73
74 sbuild: $(DSC)
75 sbuild $(DSC)
76
77 DESTDIR=
78 VARLIBDIR=$(DESTDIR)/var/lib/proxmox-installer
79 HTMLDIR=$(VARLIBDIR)/html/common
80
81 .PHONY: install
82 install: $(INSTALLER_SOURCES) $(CARGO_COMPILEDIR)/proxmox-tui-installer
83 $(MAKE) -C banner install
84 $(MAKE) -C Proxmox install
85 install -D -m 644 interfaces $(DESTDIR)/etc/network/interfaces
86 install -D -m 755 fake-start-stop-daemon $(VARLIBDIR)/fake-start-stop-daemon
87 install -D -m 755 policy-disable-rc.d $(VARLIBDIR)/policy-disable-rc.d
88 install -D -m 644 country.dat $(VARLIBDIR)/country.dat
89 install -D -m 755 unconfigured.sh $(DESTDIR)/sbin/unconfigured.sh
90 install -D -m 755 proxinstall $(DESTDIR)/usr/bin/proxinstall
91 install -D -m 755 proxmox-low-level-installer $(DESTDIR)/$(BINDIR)/proxmox-low-level-installer
92 $(foreach i,$(USR_BIN), install -m755 $(CARGO_COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/)
93 install -D -m 755 checktime $(DESTDIR)/usr/bin/checktime
94 install -D -m 644 xinitrc $(DESTDIR)/.xinitrc
95 install -D -m 755 spice-vdagent.sh $(DESTDIR)/.spice-vdagent.sh
96 install -D -m 644 Xdefaults $(DESTDIR)/.Xdefaults
97
98 $(COMPILED_BINS):
99 $(CARGO) build --package proxmox-tui-installer --bin proxmox-tui-installer $(CARGO_BUILD_ARGS)
100
101 %-banner.png: %-banner.svg
102 rsvg-convert -o $@ $<
103
104 .PHONY: upload
105 upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
106 upload: $(DEB)
107 tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist $(UPLOAD_DIST)
108
109 %.img:
110 truncate -s 2G $@
111
112 %.big.img:
113 truncate -s 8G $@
114
115 .PHONY: prepare-check-env
116 prepare-check-env: test-$(DEB)
117 rm -rf testdir
118 dpkg -X test-$(DEB) testdir
119
120 cd-info.test: PRODUCT ?= pve
121 cd-info.test:
122 printf '%s\n' "PRODUCT='$(or $(PRODUCT), pve)'" >$@.tmp
123 printf '%s\n' "PRODUCTLONG='$(or $(PRODUCTLONG), Proxmox VE)'" >>$@.tmp
124 printf '%s\n' "RELEASE='$(or $(RELEASE), 42.1)'" >>$@.tmp
125 printf '%s\n' "ISORELEASE='$(or $(ISORELEASE), 1)'" >>$@.tmp
126 printf '%s\n' "ISONAME='$(or $(ISONAME), proxmox-ve)'" >>$@.tmp
127 mv $@.tmp $@
128
129 check-pve: prepare-check-env test.img
130 rm -f cd-info.test; $(MAKE) cd-info.test
131 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
132
133 check-pve-multidisks: prepare-check-env test.img test2.img test3.img test4.img test5.big.img
134 rm -f cd-info.test; $(MAKE) cd-info.test
135 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img,test2.img,test3.img,test4.img,test5.big.img
136
137 check-pve-tui: prepare-check-env test.img
138 rm -f cd-info.test; $(MAKE) cd-info.test
139 ./proxmox-low-level-installer dump-env -t
140 testdir/usr/bin/proxmox-tui-installer -t test.img
141
142 check-pmg: prepare-check-env test.img
143 rm -f cd-info.test; $(MAKE) \
144 PRODUCT=pmg \
145 PRODUCTLONG="Proxmox Mail Gateway" \
146 ISONAME='proxmox-mail-gateway' \
147 cd-info.test
148 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
149
150 check-pbs: prepare-check-env test.img
151 rm -f cd-info.test; $(MAKE) \
152 PRODUCT='pbs' \
153 PRODUCTLONG='Proxmox Backup Server' \
154 ISONAME='proxmox-backup-server' \
155 cd-info.test
156 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
157
158
159 .phony: clean
160 clean:
161 rm -rf target build $(PACKAGE)-[0-9]*
162 rm -f $(PACKAGE)*.tar* *.deb packages packages.tmp *.build *.dsc *.buildinfo *.changes
163 rm -f testdir test*.img pve-final.pkglist country.dat final.pkglist cd-info.test
164 find . -name '*~' -exec rm {} ';'