File: rules

package info (click to toggle)
astropy-helpers 4.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 324 kB
  • sloc: python: 1,921; ansic: 69; makefile: 13
file content (21 lines) | stat: -rwxr-xr-x 525 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
export PYBUILD_NAME=astropy-helpers
export http_proxy = http://127.0.9.1:9

%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_auto_install:
	dh_auto_install
	find $(CURDIR)/debian/python3-astropy-helpers/usr/lib/ -name \*.png -exec rm {} \;

override_dh_installchangelogs:
	dh_installchangelogs CHANGES.rst

override_dh_installdocs:
	dh_installdocs README.rst

override_dh_auto_test:
	true #temporarily disable tests:
	# https://github.com/astropy/astropy-helpers/issues/477