blob: 2862de5c011e41fbe13e78cf223615525522c7e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/usr/bin/make -f
#include /usr/share/quilt/quilt.make
#export DH_VERBOSE=1
export DH_OPTIONS
#
# Hardening
#
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# Platform-specific features
DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
ifeq ($(DEB_HOST_ARCH_OS),linux)
# USB implementation is Linux-specific
extra_config_opts += --enable-intf-usb
else
extra_config_opts += --disable-intf-usb
endif
%:
dh $@
override_dh_auto_install:
dh_auto_install
# No need to have two copies of the license text/changelog in the package.
$(RM) $(CURDIR)/debian/ipmitool/usr/share/doc/ipmitool/COPYING
$(RM) $(CURDIR)/debian/ipmitool/usr/share/doc/ipmitool/ChangeLog
override_dh_installinit:
dh_installinit --name ipmievd --error-handler=ipmievd_initd_failed
override_dh_systemd_enable:
dh_systemd_enable --no-enable --name=ipmievd
override_dh_auto_configure:
dh_auto_configure -- --prefix=/usr --with-kerneldir --mandir=/usr/share/man --enable-intf-dummy $(extra_config_opts)
|