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
|
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable).
# Output every command that modifies files on the build system.
#export DH_VERBOSE = 1
export PYBUILD_SYSTEM=pyproject
export PYBUILD_NAME=termqt
export DESTDIR=debian/python3-termqt
export DOCDIR=$(DESTDIR)/usr/share/doc/python3-termqt
%:
dh $@ --buildsystem=pybuild
override_dh_auto_test:
@echo "No tests are available so far."
override_dh_installdocs:
mkdir -p $(DOCDIR)
cp -a screenshots README.md start.py $(DOCDIR)
dh_installdocs
|