File: rules

package info (click to toggle)
installation-birthday 15
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 112 kB
  • sloc: python: 166; makefile: 13; sh: 6
file content (18 lines) | stat: -rwxr-xr-x 419 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f

include /usr/share/dpkg/pkg-info.mk

%:
	dh $@ --with=python3 --buildsystem=pybuild

override_dh_auto_build:
	dh_auto_build $@
	help2man \
		--no-info \
		--name="receive congratulations on system installation anniversaries" \
		--version-string="$(DEB_VERSION_UPSTREAM)" \
		./installation-birthday > ./installation-birthday.1

override_dh_auto_clean:
	dh_auto_clean
	rm -f installation-birthday.1