12 lines
257 B
Makefile
Executable file
12 lines
257 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export PYBUILD_NAME=colorclass
|
|
|
|
export PYBUILD_BEFORE_TEST=cp example.py {build_dir}
|
|
export PYBUILD_AFTER_TEST=rm {build_dir}/example.py
|
|
|
|
%:
|
|
dh ${@} --buildsystem pybuild --with python3
|
|
|
|
override_dh_compress:
|
|
dh_compress -X example.py
|