File: rules

package info (click to toggle)
overpass 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 156 kB
  • sloc: python: 285; makefile: 10
file content (16 lines) | stat: -rwxr-xr-x 455 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

%:
	dh $@ --with python2,python3

override_dh_auto_install:
	python  setup.py install --root=debian/python-overpass  --install-layout=deb
	# cli tools are provided only by the py3k package
	rm -rf $(CURDIR)/debian/python-overpass/usr/bin
	python3 setup.py install --root=debian/python3-overpass --install-layout=deb

override_dh_installdocs:
	dh_installdocs -A README.md

override_dh_installexamples:
	dh_installexamples -A examples/*