File: rules

package info (click to toggle)
pyfai 2026.02-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 96,100 kB
  • sloc: python: 70,217; lisp: 8,335; sh: 407; ansic: 247; makefile: 133; xml: 69
file content (39 lines) | stat: -rwxr-xr-x 933 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/make -f

export PYBUILD_NAME=pyfai

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

override_dh_clean:
	dh_clean
	rm -f $(patsubst %.pyx,%.c,$(wildcard pyFAI/ext/*.pyx))
	rm -rf build/html
	rm -rf *.egg-info

override_dh_auto_build:
	dh_auto_build
	python3 setup.py build build_man build_doc

override_dh_install:
	dh_numpy3

	# move the scripts to right package
	dh_install -p pyfai debian/python3-pyfai/usr/bin usr/
	# remove all scripts installed by pybuild
	rm -rf debian/python3-pyfai/usr/bin

	#Finally install stuff
	dh_install

# inactive test for now
override_dh_auto_test:
	PYBUILD_SYSTEM=custom \
	PYBUILD_TEST_ARGS="PYTHONPATH={build_dir} PYFAI_TESTIMAGES=testimages PYFAI_DATA=$(shell pwd) {interpreter} ./run_tests.py --installed" dh_auto_test

override_dh_installman:
	dh_installman -p pyfai build/man/*.1

override_dh_installdocs:
	dh_installdocs "build/sphinx/html" -p pyfai-doc
	dh_installdocs