File: rules

package info (click to toggle)
python-xlib 0.33-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,848 kB
  • sloc: python: 23,041; awk: 89; makefile: 65; sh: 10
file content (38 lines) | stat: -rwxr-xr-x 794 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/make -f
#-*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

export PYBUILD_NAME=xlib

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

override_dh_auto_build:
	dh_auto_build
	make -C doc html
	# for some reason makeinfo doesn’t create toc on the first run
	make -C doc html

override_dh_auto_clean:
	dh_auto_clean
	make -C doc clean

override_dh_auto_install:
	dh_auto_install
	find debian/python3-xlib -name '*.py' -print0 | xargs -0 dos2unix -q

override_dh_installdocs:
	dh_installdocs
	rm -f debian/*/usr/share/doc/*/*/Makefile

override_dh_compress:
	dh_compress -X.py

override_dh_auto_test:
ifeq (,$(filter nocheck, $(DEB_BUILD_OPTIONS)))
	xvfb-run dh_auto_test
endif

.PHONY: override_dh_auto_build override_dh_auto_clean override_dh_compress