summaryrefslogtreecommitdiff
path: root/debian/rules
blob: d05913b4da58a3615ed2c5fbf58808ba37b9361a (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
#! /usr/bin/make -f

# The options have been chooses as follows:
# - manually set pamlibdir because we'Re installing in /usr by default but 
#   pam libs must go to /lib/*/security, same for udev rules
# - disable killing users processes by default. This is weird an unexpected
#   behavior
# - Disable lto because this makes the build fail with static library 
#   warnings and with  linking errors. (It seems that instead of ar/ld
#   gcc-ar and gcc should be used)
# - tests disabled beacuase some of the tests seem to require elogind running.
#   Need to sort out which tests could be run

CONFFLAGS = \
  --with-pamlibdir=/lib/$(DEB_HOST_MULTIARCH)/security \
  --with-udevrulesdir=/lib/udev/rules.d \
  --without-kill-user-processes \
  --disable-lto \
  --disable-tests

CONFFLAGS_CGROUPCTRL_ELOGIND= \
  --with-cgroup-controller=elogind

override_dh_autoreconf:
	dh_autoreconf ./autogen.sh

override_dh_auto_configure:
	dh_auto_configure --builddirectory=build \
    -- $(CONFFLAGS) $(CONFFLAGS_CGROUPCTRL_ELOGIND)

override_dh_missing:
	dh_missing --list-missing

override_dh_shlibdeps:
	dh_shlibdeps -- -xlibeudev1
	  
%:
	dh $@ --builddirectory=build --with autoreconf --parallel