File: rules

package info (click to toggle)
dhcpcd5 7.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,932 kB
  • sloc: ansic: 29,556; sh: 1,829; makefile: 318
file content (21 lines) | stat: -rwxr-xr-x 445 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- \
		--mandir=/usr/share/man \
		--dbdir=/var/lib/dhcpcd \
		--libexecdir=/lib/dhcpcd \
		--rundir=/run

# avoid starting the unconfigured service as it may break connectivity

override_dh_installinit:
	dh_installinit --name=dhcpcd --no-start

override_dh_installsystemd:
	dh_installsystemd --name=dhcpcd --no-start