mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
14 lines
400 B
Makefile
Executable file
14 lines
400 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
%:
|
|
dh ${@} --with python3
|
|
|
|
override_dh_auto_build:
|
|
# Generate bash completion file
|
|
python3 doc/generate_bash_completion.py
|
|
python3 doc/generate_manpages.py --gzip --output doc/yunohost.8.gz
|
|
|
|
override_dh_installinit:
|
|
dh_installsystemd -pyunohost --name=yunohost-api --restart-after-upgrade
|
|
dh_installsystemd -pyunohost --name=yunohost-firewall --noscripts
|