16 lines
368 B
Makefile
Executable file
16 lines
368 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh ${@} --buildsystem=pybuild
|
|
|
|
execute_after_dh_auto_clean:
|
|
# help pybuild
|
|
rm -rf *.egg-info
|
|
|
|
execute_after_dh_auto_install:
|
|
# bash-completion
|
|
mkdir -p debian/gita/usr/share/bash-completion/completions
|
|
cp auto-completion/bash/.gita-completion.bash debian/gita/usr/share/bash-completion/completions/gita
|
|
|
|
override_dh_auto_test:
|
|
# disabled
|