File: rules

package info (click to toggle)
python-scp 0.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 108 kB
  • sloc: python: 635; sh: 36; makefile: 11
file content (19 lines) | stat: -rwxr-xr-x 447 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-

# Common rules
export PYBUILD_NAME=python-scp

%:
	dh $@ --with python2,python3

override_dh_auto_install:
	python  setup.py install --install-layout=deb --root=$(CURDIR)/debian/python-scp
	python3 setup.py install --install-layout=deb --root=$(CURDIR)/debian/python3-scp

override_dh_installdocs:
	dh_installdocs -A README.rst

override_dh_auto_clean:
	rm -rf *.egg-info
	dh_auto_clean