blob: b2ed1592e496fb45283f7c2ef2cc234f399af7c0 (
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
|
#!/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
%:
dh $@ --with systemd,autotools-dev
override_dh_auto_install:
dh_auto_install
cp -f $(CURDIR)/debian/systemd/ipmitool.conf $(CURDIR)/debian/ipmitool/usr/lib/modules-load.d/ipmievd.conf
# 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_auto_configure:
dh_auto_configure -- --prefix=/usr --with-kerneldir --mandir=/usr/share/man
|