14 lines
279 B
Makefile
Executable file
14 lines
279 B
Makefile
Executable file
#!/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
|