File: rules

package info (click to toggle)
python-murmurhash 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 204 kB
  • sloc: cpp: 544; python: 268; ansic: 160; sh: 10; makefile: 9
file content (13 lines) | stat: -rwxr-xr-x 335 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export PYBUILD_NAME = murmurhash

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

# ignore test requiring not yet packaged mmh3
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	find .pybuild -name test_against_mmh3.py -delete
	dh_auto_test
endif