File: rules

package info (click to toggle)
sciplot 1.36-18
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 760 kB
  • sloc: ansic: 15,235; makefile: 24
file content (13 lines) | stat: -rwxr-xr-x 285 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

override_dh_auto_install:
	dh_auto_install
	@echo Renaming executables to have sciplot- prefix.
	-cd debian/tmp/usr/bin \
	 && for f in *; do mv "$$f" "sciplot-$$f"; done \
	 || echo Ignoring rename error