blob: 9c046626e64b3cffa6c608d12076cc16f22642fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/make -f
export PYBUILD_NAME=paramiko
%:
dh $@ --with python2,python3 --buildsystem=pybuild
override_dh_installdocs:
ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS)))
sphinx-build sites/docs html
endif
dh_installdocs
|