File: rules

package info (click to toggle)
zeitgeist-explorer 0.2-1.2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 192 kB
  • sloc: python: 700; makefile: 12
file content (17 lines) | stat: -rwxr-xr-x 388 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

%:
	dh "$@" --with python2

override_dh_auto_build:
	set -ex; for python in $(shell pyversions -r); do \
		$$python setup.py build; \
	done;
	
override_dh_auto_install:
	set -ex; for python in $(shell pyversions -r); do \
		$$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \
	done;

override_dh_installchangelogs:
	dh_installchangelogs NEWS