File: rules

package info (click to toggle)
pydicom 0.9.8-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,116 kB
  • ctags: 811
  • sloc: python: 23,051; sh: 13; makefile: 9
file content (14 lines) | stat: -rwxr-xr-x 264 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f
# -*- makefile -*-

%:
	dh $@ --buildsystem=python_distutils --with python2

override_dh_clean:
	dh_clean
	rm -rf .pydistutils.cfg

override_dh_auto_test:
	for PYTHON in `pyversions -r`; do \
        $$PYTHON setup.py test || exit 1; \
    done