]> git.proxmox.com Git - pve-qemu.git/blob - debian/rules
d/rules: explicitly disable building slirp
[pve-qemu.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12 include /usr/share/dpkg/pkg-info.mk
13
14 # These are used for cross-compiling and for saving the configure script
15 # from having to guess our platform (since we know it already)
16 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
17 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
18
19 ARCH ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
20
21 PACKAGE=pve-qemu-kvm
22 destdir := $(CURDIR)/debian/$(PACKAGE)
23
24 flagfile := $(destdir)/usr/share/kvm/recognized-CPUID-flags-x86_64
25 machinefile := $(destdir)/usr/share/kvm/machine-versions-x86_64.json
26
27 # default QEMU out-of-tree build directory is ./build
28 BUILDDIR=build
29
30 CFLAGS = -Wall
31
32 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
33 CFLAGS += -O0
34 else
35 CFLAGS += -O2
36 endif
37
38 ${BUILDDIR}/config.status: configure
39 dh_testdir
40 # Add here commands to configure the package.
41
42 # guest-agent is only required for guest systems
43 ./configure \
44 --with-git-submodules=ignore \
45 --docdir=/usr/share/doc/pve-qemu-kvm \
46 --localstatedir=/var \
47 --prefix=/usr \
48 --sysconfdir=/etc \
49 --target-list=$(ARCH)-softmmu,aarch64-softmmu \
50 --with-suffix="kvm" \
51 --with-pkgversion="${DEB_SOURCE}_${DEB_VERSION_UPSTREAM_REVISION}" \
52 --audio-drv-list="alsa" \
53 --datadir=/usr/share \
54 --libexecdir=/usr/lib/kvm \
55 --disable-capstone \
56 --disable-gtk \
57 --disable-guest-agent \
58 --disable-guest-agent-msi \
59 --disable-libnfs \
60 --disable-libssh \
61 --disable-sdl \
62 --disable-smartcard \
63 --disable-strip \
64 --disable-xen \
65 --disable-slirp \
66 --enable-curl \
67 --enable-docs \
68 --enable-glusterfs \
69 --enable-gnutls \
70 --enable-libiscsi \
71 --enable-libusb \
72 --enable-linux-aio \
73 --enable-linux-io-uring \
74 --enable-numa \
75 --enable-opengl \
76 --enable-rbd \
77 --enable-seccomp \
78 --enable-spice \
79 --enable-usb-redir \
80 --enable-virglrenderer \
81 --enable-virtfs \
82 --enable-virtiofsd \
83 --enable-zstd
84
85 build: build-stamp
86
87 build-stamp: ${BUILDDIR}/config.status
88 dh_testdir
89
90 # Add here commands to compile the package.
91 $(MAKE)
92
93 #docbook-to-man debian/kvm.sgml > kvm.1
94
95 touch $@
96
97 clean:
98 dh_testdir
99 dh_testroot
100 rm -f build-stamp
101
102 # Add here commands to clean up after the build process.
103 -$(MAKE) distclean
104 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
105 cp -f /usr/share/misc/config.sub config.sub
106 endif
107 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
108 cp -f /usr/share/misc/config.guess config.guess
109 endif
110
111
112 dh_clean
113
114 install: build
115 dh_testdir
116 dh_testroot
117 dh_prep
118 dh_installdirs
119 dh_lintian
120
121 # Add here commands to install the package into debian/pve-kvm.
122 $(MAKE) DESTDIR=$(destdir) install
123
124 # we do not need openbios files (sparc/ppc)
125 rm -rf $(destdir)/usr/share/kvm/openbios-*
126 # remove ppc files
127 rm $(destdir)/usr/share/kvm/*.dtb
128 rm $(destdir)/usr/share/kvm/s390-ccw.img
129 rm $(destdir)/usr/share/kvm/s390-netboot.img
130 rm $(destdir)/usr/share/kvm/qemu_vga.ndrv
131 rm $(destdir)/usr/share/kvm/slof.bin
132 rm $(destdir)/usr/share/kvm/u-boot.e500
133 # remove Alpha files
134 rm $(destdir)/usr/share/kvm/palcode-clipper
135 # remove RISC-V files
136 rm $(destdir)/usr/share/kvm/opensbi-riscv32-generic-fw_dynamic.bin
137 rm $(destdir)/usr/share/kvm/opensbi-riscv64-generic-fw_dynamic.bin
138
139 # Remove things we don't package at all, would be a "kvm-dev" package
140 rm -Rf $(destdir)/usr/include/linux/
141 rm -Rf $(destdir)/usr/include
142 rm -f $(destdir)/usr/lib/kvm/qemu-bridge-helper
143 rm -f $(destdir)/usr/lib/kvm/virtfs-proxy-helper
144
145 # CPU flags are static for QEMU version, allows avoiding more costly checks
146 $(destdir)/usr/bin/qemu-system-x86_64 -cpu help | ./debian/parse-cpu-flags.pl > $(flagfile)
147 $(destdir)/usr/bin/qemu-system-x86_64 -machine help | ./debian/parse-machines.pl > $(machinefile)
148
149 # Build architecture-independent files here.
150 binary-indep: build install
151 # We have nothing to do by default.
152
153 # Build architecture-dependent files here.
154 binary-arch: build install
155 dh_testdir
156 dh_testroot
157 # exclude historic Changelog file, which stops at release 0.14
158 dh_installchangelogs --exclude=Changelog
159 dh_installdocs
160 dh_installexamples
161 dh_install
162 # dh_installmenu
163 # dh_installdebconf
164 # dh_installlogrotate
165 # dh_installemacsen
166 # dh_installpam
167 # dh_installmime
168 # dh_python
169 # dh_installinit
170 # dh_installcron
171 # dh_installinfo
172 dh_installman
173 dh_link
174 dh_strip --dbg-package=pve-qemu-kvm-dbg
175 dh_compress
176 dh_fixperms
177 # dh_perl
178 # dh_makeshlibs
179 dh_installdeb
180 # Debian >= Buster has libglusterfs0 and lots of libgfFOO, upstream has the libs in glusterfs-common
181 # pass -x to dpkg-shlibdeps and specify dependencies in d/control instead
182 dh_shlibdeps -- -xlibglusterfs0 -xlibgfxdr0 -xlibgfrpc0 -xlibgfdb0 -xlibgfchangelog0 -xlibgfapi0
183 dh_gencontrol
184 dh_md5sums
185 dh_builddeb
186
187 binary: binary-indep binary-arch
188 .PHONY: build clean binary-indep binary-arch binary install