File: rules

package info (click to toggle)
peptidebuilder 1.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,072 kB
  • sloc: python: 3,033; sh: 31; makefile: 11
file content (17 lines) | stat: -rwxr-xr-x 345 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

export DH_VERBOSE = 1

export PYBUILD_NAME=peptidebuilder

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

override_dh_auto_install:
	dh_auto_install
	find debian/python3-peptidebuilder/usr/lib/ -name .coverage -delete

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	PYTHONPATH=$$(pwd) pytest-3
endif