15 lines
279 B
Text
15 lines
279 B
Text
|
#!/usr/bin/make -f
|
||
|
#export DH_VERBOSE = 1
|
||
|
|
||
|
export PYBUILD_NAME=colorclass
|
||
|
|
||
|
export PYBUILD_BEFORE_TEST=cp example.py {build_dir}
|
||
|
export PYBUILD_AFTER_TEST=rm {build_dir}/example.py
|
||
|
|
||
|
|
||
|
%:
|
||
|
dh $@ --with python3 --buildsystem pybuild
|
||
|
|
||
|
override_dh_compress:
|
||
|
dh_compress -X example.py
|