blob: ef70aa6b95e121277fc2144806dd4e38d063caed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/make -f
export PYBUILD_NAME=port-for
export PYBUILD_SYSTEM=pyproject
%:
dh ${@} --buildsystem=pybuild --with python3
override_dh_auto_install:
dh_auto_install
override_dh_auto_test:
# disabled
mkdir -p debian/python3-$(PYBUILD_NAME)/usr/share/doc/python3-$(PYBUILD_NAME)
cp README.rst debian/python3-$(PYBUILD_NAME)/usr/share/doc/python3-$(PYBUILD_NAME)/README
|