File: rules

package info (click to toggle)
python-nmap 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 196 kB
  • sloc: python: 446; makefile: 37
file content (21 lines) | stat: -rwxr-xr-x 366 bytes parent folder | download
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

%:
	dh $@ --with python2

override_dh_auto_install:
	dh_auto_install
	find $(CURDIR)/debian/ -name "example.py" -delete

override_dh_auto_test:
	# do nothing

override_dh_auto_build:
	for python in $(shell pyversions -r); do \
		$$python setup.py build; \
	done

override_dh_auto_install:
	dh_auto_install -Spython_distutils