2025-02-05 14:32:18 +01:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
export PYBUILD_NAME=treelib
|
|
|
|
|
|
|
|
%:
|
|
|
|
dh ${@} --buildsystem=pybuild
|
|
|
|
|
2025-02-05 14:33:31 +01:00
|
|
|
execute_after_dh_auto_clean:
|
|
|
|
# help pybuild
|
|
|
|
rm -rf *.egg-info
|
|
|
|
|
2025-02-05 14:32:18 +01:00
|
|
|
execute_after_dh_installexamples:
|
|
|
|
# correcting shebang
|
|
|
|
sed -i -e 's|#!/usr/bin/env python|#!/usr/bin/python3|' debian/python3-treelib/usr/share/doc/python3-treelib/examples/*.py
|