blob: dc6ae76c35e52fc02252514042015e1a836455dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/make -f
export PYBUILD_NAME=ptpython
%:
dh ${@} --buildsystem=pybuild
execute_after_dh_auto_clean:
# help pybuild
rm -rf *.egg-info
execute_after_dh_auto_install:
# removing unused files
rm -f debian/ptpython/usr/bin/ptpython
rm -f debian/ptpython/usr/bin/ptipython
|