]> git.proxmox.com Git - pve-qemu-kvm.git/blob - debian/rules
6b8cd963f5dd298d7d77bb0082937a780cfad9e6
[pve-qemu-kvm.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
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)
15 DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17
18 PACKAGE=pve-qemu-kvm
19 destdir := $(CURDIR)/debian/$(PACKAGE)
20
21 ifneq "$(wildcard /usr/share/quilt/quilt.make)" ""
22 include /usr/share/quilt/quilt.make
23 endif
24
25 CFLAGS = -Wall
26
27 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
28 CFLAGS += -O0
29 else
30 CFLAGS += -O2
31 endif
32
33 config.status: configure
34 dh_testdir
35 # Add here commands to configure the package.
36 ./configure --with-confsuffix="/kvm" --target-list=x86_64-softmmu --prefix=/usr --datadir=/usr/share --docdir=/usr/share/doc/pve-qemu-kvm --sysconfdir=/etc --disable-xen --enable-vnc-tls --enable-sdl --enable-uuid --enable-linux-aio --enable-rbd --enable-libiscsi --disable-smartcard-nss --audio-drv-list="alsa" --enable-spice --enable-usb-redir --enable-glusterfs
37
38 build: patch build-stamp
39
40 build-stamp: config.status
41 dh_testdir
42
43 # Add here commands to compile the package.
44 $(MAKE)
45
46 #docbook-to-man debian/kvm.sgml > kvm.1
47
48 touch $@
49
50 clean: unpatch
51 dh_testdir
52 dh_testroot
53 rm -f build-stamp
54
55 # Add here commands to clean up after the build process.
56 -$(MAKE) distclean
57 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
58 cp -f /usr/share/misc/config.sub config.sub
59 endif
60 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
61 cp -f /usr/share/misc/config.guess config.guess
62 endif
63
64
65 dh_clean
66
67 install: build
68 dh_testdir
69 dh_testroot
70 dh_clean -k
71 dh_installdirs
72
73 # Add here commands to install the package into debian/pve-kvm.
74 $(MAKE) DESTDIR=$(destdir) install
75
76 mv $(destdir)/usr/bin/qemu-system-x86_64 $(destdir)/usr/bin/kvm
77 mv $(destdir)/usr/share/man/man1/qemu.1 $(destdir)/usr/share/man/man1/kvm.1
78
79 # Install the userspace utilities
80 install -m 0755 scripts/kvm/kvm_stat $(destdir)/usr/bin/
81 install -s -m 0755 vma $(destdir)/usr/bin/
82
83 install -D -m 0755 $(CURDIR)/debian/kvm-ifup $(destdir)/etc/kvm/kvm-ifup
84 install -D -m 0755 $(CURDIR)/debian/kvm-ifdown $(destdir)/etc/kvm/kvm-ifdown
85
86 # do not install empty file (now in /usr/share/kvm/cpus-x86_64.conf)
87 rm $(destdir)/etc/kvm/target-x86_64.conf
88
89 # we do not need openbios files (sparc/ppc)
90 rm -rf $(destdir)/usr/share/kvm/openbios-*
91 # remove ppc files
92 rm $(destdir)/usr/share/kvm/*.dtb
93 rm $(destdir)/usr/share/kvm/ppc_rom.bin
94 rm $(destdir)/usr/share/kvm/s390-zipl.rom
95 rm $(destdir)/usr/share/kvm/s390-ccw.img
96 rm $(destdir)/usr/share/kvm/slof.bin
97 rm $(destdir)/usr/share/kvm/spapr-rtas.bin
98 # remove Aplha files
99 rm $(destdir)/usr/share/kvm/palcode-clipper
100
101 # remove guest agent (that is only required for a guest)
102 rm $(destdir)/usr/bin/qemu-ga
103
104 # Remove things we don't package at all, would be a "kvm-dev" package
105 rm -Rf $(destdir)/usr/include/linux/
106 rm -Rf $(destdir)/usr/include
107 rm -Rf $(destdir)/usr/lib*
108
109 # Build architecture-independent files here.
110 binary-indep: build install
111 # We have nothing to do by default.
112
113 # Build architecture-dependent files here.
114 binary-arch: build install
115 dh_testdir
116 dh_testroot
117 dh_installchangelogs
118 dh_installdocs
119 dh_installexamples
120 # dh_install
121 # dh_installmenu
122 # dh_installdebconf
123 # dh_installlogrotate
124 # dh_installemacsen
125 # dh_installpam
126 # dh_installmime
127 # dh_python
128 # dh_installinit
129 # dh_installcron
130 # dh_installinfo
131 dh_installman
132 dh_link
133 dh_strip
134 dh_compress
135 dh_fixperms
136 # dh_perl
137 # dh_makeshlibs
138 dh_installdeb
139 dh_shlibdeps
140 dh_gencontrol
141 dh_md5sums
142 dh_builddeb
143
144 binary: binary-indep binary-arch
145 .PHONY: build clean binary-indep binary-arch binary install