1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
# This file was automatically generated by stdeb 0.8.5 at
# Fri, 29 Jul 2016 18:26:39 +0100
#export PYBUILD_NAME=txwinrm
%:
dh $@ --with python2 --buildsystem=pybuild
override_dh_fixperms:
dh_fixperms -O--buildsystem=pybuild
chmod 644 debian/python-txwinrm/usr/lib/python2.7/dist-packages/txwinrm/request/*.xml
#Custom target to generate man pages
VER=1.2.7
BIN_DIR=build/scripts-2.7/
MAN_DIR=debian/man/
$(MAN_DIR)%.1 : $(BIN_DIR)%
help2man --output=$@ --no-info --manual=txwinrm --include=debian/h2m/$(*F).h2m --version-string=$(VER) $<
.PHONY: man_pages
man_pages: $(MAN_DIR)genkrb5conf.1 $(MAN_DIR)typeperf.1 $(MAN_DIR)wecutil.1 $(MAN_DIR)winrm.1 $(MAN_DIR)winrs.1
|