File: rules

package info (click to toggle)
aiocoap 0.1%2B9ae36f4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 396 kB
  • ctags: 597
  • sloc: python: 2,987; makefile: 12
file content (22 lines) | stat: -rwxr-xr-x 424 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
#!/usr/bin/make -f
# -*- makefile -*-

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

export PYBUILD_NAME=aiocoap


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

override_dh_auto_clean:
	dh_auto_clean --all
	rm -rf doc/_build

override_dh_auto_install:
	dh_auto_install
	set -ex; \
		cd doc; \
		sphinx-build -C -b html -Dexclude_patterns=LICENSE.rst -Dmaster_doc=index . _build/html; \
		cd -;