blob: 81b005ac776013a8747ac656740d97da071d1308 (
plain)
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
|
#!/usr/bin/make -f
DOPACKAGES = $(shell dh_listpackages)
export PYBUILD_DESTDIR=debian/tmp
%:
dh $@ --with python3,sphinxdoc --buildsystem=pybuild
override_dh_clean:
dh_clean --exclude=test/units/inventory_test_data/group_vars/noparse/all.yml~
#override_dh_auto_build:
# dh_auto_build
#ifneq (,$(filter ansible-doc,$(DOPACKAGES)))
# # html documentation
# $(MAKE) webdocs
# # manpage documentation
# $(MAKE) docs
#endif
override_dh_auto_test:
# For now, disable the tests
#make tests-nonet
override_dh_python3:
dh_python3 --shebang=/usr/bin/python3
execute_after_dh_auto_install:
find debian/tmp/usr/lib/ -name '.git*' -delete
find debian/tmp/usr/lib/ -name '.travis.yml' -delete
|