File: rules

package info (click to toggle)
detox 1.3.3-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 640 kB
  • sloc: ansic: 2,192; yacc: 284; lex: 109; makefile: 29
file content (20 lines) | stat: -rwxr-xr-x 575 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f
#export DH_VERBOSE=1

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

# From CHANGELOG.md (upstream):
# "1.1.1 (2005-03-13)
#  [...]
#  - Modified the install script to install the config file and translation
#    tables as `".sample"` as well as the working version, for all users, but
#    in particular, to make patching the `Makefile` easier for the FreeBSD
#    port."
#
# It is not useful for Debian users, so we are dropping .sample files.
override_dh_auto_install:
	dh_auto_install
	find debian/detox -name '*.sample' -exec rm -f {} \;