File: rules

package info (click to toggle)
mboxgrep 0.7.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 732 kB
  • sloc: ansic: 3,082; makefile: 21
file content (18 lines) | stat: -rwxr-xr-x 428 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f

# hardening
export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow

%:
	dh $@

override_dh_auto_install:
	dh_installdirs
	$(MAKE) install prefix=`pwd`/debian/mboxgrep/usr \
		mandir=`pwd`/debian/mboxgrep/usr/share/man \
		infodir=`pwd`/debian/mboxgrep/usr/share/info \
		INSTALL='install --strip-program=true'

override_dh_auto_clean:
	-test -f Makefile && $(MAKE) clean
	-test -f Makefile && $(MAKE) distclean