File: rules

package info (click to toggle)
ngircd 22-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,716 kB
  • ctags: 1,505
  • sloc: ansic: 18,850; sh: 4,829; makefile: 633; xml: 220
file content (35 lines) | stat: -rwxr-xr-x 1,042 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/make -f

export DEB_BUILD_HARDENING=1

override_dh_auto_configure:
	dh_auto_configure -- \
	    --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
	    --prefix=/usr \
	    --mandir=\$${prefix}/share/man \
	    --infodir=\$${prefix}/share/info \
	    --sysconfdir=/etc/ngircd \
	    --with-gnutls \
	    --with-ident \
	    --with-pam \
	    --enable-ipv6

override_dh_auto_install:
	dh_auto_install
	# install config and sample motd file
	install -m 640 -D $(CURDIR)/debian/ngircd.conf \
	    $(CURDIR)/debian/ngircd/etc/ngircd/ngircd.conf
	install -m 640 -D $(CURDIR)/debian/ngircd.motd \
	    $(CURDIR)/debian/ngircd/etc/ngircd/ngircd.motd
	install -m 640 -D $(CURDIR)/contrib/ngircd.service \
	    $(CURDIR)/debian/ngircd/lib/systemd/system/ngircd.service
	# make lintian happy
	rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/COPYING
	mv $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/ChangeLog \
	    $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/changelog

override_dh_compress:
	dh_compress -XCommands.txt

%:
	dh $@