]> git.proxmox.com Git - pve-qemu.git/blame - debian/rules
d/rules: disable libxml2 support
[pve-qemu.git] / debian / rules
CommitLineData
95259824
WB
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
13# These are used for cross-compiling and for saving the configure script
14# from having to guess our platform (since we know it already)
15DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17
a544966d
WB
18ARCH ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
19
95259824
WB
20PACKAGE=pve-qemu-kvm
21destdir := $(CURDIR)/debian/$(PACKAGE)
22
95259824
WB
23CFLAGS = -Wall
24
25ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
26 CFLAGS += -O0
27else
28 CFLAGS += -O2
29endif
30
31config.status: configure
32 dh_testdir
33 # Add here commands to configure the package.
a21f5778
EK
34
35 # guest-agent is only required for guest systems
964a487a 36 ./configure \
2fb093cf 37 --docdir=/usr/share/doc/pve-qemu-kvm \
964a487a
TL
38 --localstatedir=/var \
39 --prefix=/usr \
40 --sysconfdir=/etc \
41 --target-list=$(ARCH)-softmmu,aarch64-softmmu \
42 --with-confsuffix="/kvm" \
43 --audio-drv-list="alsa" \
44 --datadir=/usr/share \
edf1ab9a 45 --disable-capstone \
964a487a
TL
46 --disable-gtk \
47 --disable-guest-agent \
48 --disable-guest-agent-msi \
49 --disable-libnfs \
ec302df9 50 --disable-libxml2 \
964a487a
TL
51 --disable-smartcard \
52 --disable-strip \
53 --disable-xen \
54 --enable-glusterfs \
55 --enable-gnutls \
56 --enable-jemalloc \
57 --enable-libiscsi \
58 --enable-libusb \
59 --enable-linux-aio \
60 --enable-numa \
61 --enable-rbd \
62 --enable-sdl \
73e12bd7 63 --enable-seccomp \
964a487a
TL
64 --enable-spice \
65 --enable-usb-redir \
66 --enable-virtfs \
67 --enable-xfsctl
95259824 68
8e326f30 69build: build-stamp
95259824
WB
70
71build-stamp: config.status
72 dh_testdir
73
74 # Add here commands to compile the package.
75 $(MAKE)
76
77 #docbook-to-man debian/kvm.sgml > kvm.1
78
79 touch $@
80
8e326f30 81clean:
95259824
WB
82 dh_testdir
83 dh_testroot
84 rm -f build-stamp
85
86 # Add here commands to clean up after the build process.
87 -$(MAKE) distclean
88ifneq "$(wildcard /usr/share/misc/config.sub)" ""
89 cp -f /usr/share/misc/config.sub config.sub
90endif
91ifneq "$(wildcard /usr/share/misc/config.guess)" ""
92 cp -f /usr/share/misc/config.guess config.guess
93endif
94
95
96 dh_clean
97
98install: build
99 dh_testdir
100 dh_testroot
68ba098a 101 dh_prep
95259824 102 dh_installdirs
7df330a9 103 dh_lintian
95259824
WB
104
105 # Add here commands to install the package into debian/pve-kvm.
106 $(MAKE) DESTDIR=$(destdir) install
107
95259824
WB
108 # we do not need openbios files (sparc/ppc)
109 rm -rf $(destdir)/usr/share/kvm/openbios-*
110 # remove ppc files
111 rm $(destdir)/usr/share/kvm/*.dtb
112 rm $(destdir)/usr/share/kvm/ppc_rom.bin
113 rm $(destdir)/usr/share/kvm/s390-ccw.img
8fefb882
TL
114 rm $(destdir)/usr/share/kvm/s390-netboot.img
115 rm $(destdir)/usr/share/kvm/qemu_vga.ndrv
95259824
WB
116 rm $(destdir)/usr/share/kvm/slof.bin
117 rm $(destdir)/usr/share/kvm/spapr-rtas.bin
118 rm $(destdir)/usr/share/kvm/u-boot.e500
119 # remove Aplha files
120 rm $(destdir)/usr/share/kvm/palcode-clipper
121
95259824
WB
122 # Remove things we don't package at all, would be a "kvm-dev" package
123 rm -Rf $(destdir)/usr/include/linux/
124 rm -Rf $(destdir)/usr/include
125 rm -Rf $(destdir)/usr/lib*
126
127# Build architecture-independent files here.
128binary-indep: build install
129# We have nothing to do by default.
130
131# Build architecture-dependent files here.
132binary-arch: build install
133 dh_testdir
134 dh_testroot
2c2626dd
EK
135 # exclude historic Changelog file, which stops at release 0.14
136 dh_installchangelogs --exclude=Changelog
95259824
WB
137 dh_installdocs
138 dh_installexamples
fd202a5a 139 dh_install
95259824
WB
140# dh_installmenu
141# dh_installdebconf
142# dh_installlogrotate
143# dh_installemacsen
144# dh_installpam
145# dh_installmime
146# dh_python
147# dh_installinit
148# dh_installcron
149# dh_installinfo
150 dh_installman
151 dh_link
152 dh_strip --dbg-package=pve-qemu-kvm-dbg
153 dh_compress
154 dh_fixperms
155# dh_perl
156# dh_makeshlibs
157 dh_installdeb
158 dh_shlibdeps
159 dh_gencontrol
160 dh_md5sums
161 dh_builddeb
162
163binary: binary-indep binary-arch
164.PHONY: build clean binary-indep binary-arch binary install