blob: 13909028a928b8426d19e5f03bc5bfa0dbfef80c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/make -f
# You must remove unused comment lines for the released package.
#export DH_VERBOSE = 1
#export PYBUILD_NAME = tkstackrpms
DEB_BUILD_OPTIONS := nocheck
%:
dh $@ --with python3 --buildsystem pybuild
execute_after_dh_auto_clean:
rm -rf build/ .pybuild/ src/*.egg-info dist/
|