File: rules

package info (click to toggle)
pwndck 0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176 kB
  • sloc: python: 388; sh: 52; makefile: 12
file content (18 lines) | stat: -rwxr-xr-x 383 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

export PYBUILD_NAME=pwndck

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

override_dh_auto_clean:
	dh_auto_clean
	./debian/release_check || echo "\nRELEASE CHECK FAILURE\n"

override_dh_auto_build:
	dh_auto_build
	pandoc debian/pwndck.1.md -s -t man -o debian/pwndck.1
	sed -i 's/\\\[en\]/\\\-/' debian/pwndck.1

override_dh_auto_test:
	pytest -m "not webtest"