File: rules

package info (click to toggle)
authprogs 0.7.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 324 kB
  • sloc: python: 1,031; makefile: 15
file content (21 lines) | stat: -rwxr-xr-x 514 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
21
#!/usr/bin/make -f
export DH_VERBOSE=1

export PYBUILD_NAME=authprogs
%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_auto_clean:
	dh_auto_clean

override_dh_auto_install:
	dh_auto_install

override_dh_installdocs:
	dh_installdocs
	rm -vf $(CURDIR)/debian/$(PYBUILD_NAME)/usr/share/doc/authprogs/INSTALL
	rm -vf $(CURDIR)/debian/$(PYBUILD_NAME)/usr/share/doc/authprogs/authprogs.html
	rm -vf $(CURDIR)/debian/$(PYBUILD_NAME)/usr/share/doc/authprogs/COPYING

override_dh_auto_test:
	echo "skip testing"