11 lines
272 B
Text
11 lines
272 B
Text
|
#!/usr/bin/make -f
|
||
|
|
||
|
export PYBUILD_NAME=pgcli
|
||
|
|
||
|
%:
|
||
|
dh ${@} --buildsystem=pybuild --with python3
|
||
|
|
||
|
execute_after_dh_auto_install:
|
||
|
mkdir -p debian/pgcli/usr/share/bash-completion/completions
|
||
|
cp pgcli-completion.bash debian/pgcli/usr/share/bash-completion/completions/pgcli
|