mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
20 lines
567 B
Makefile
Executable file
20 lines
567 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_installinit -pyunohost --name=yunohost-api --noscripts
|
|
dh_installinit -pyunohost --name=yunohost-firewall --noscripts
|
|
|
|
override_dh_systemd_enable:
|
|
dh_systemd_enable --name=yunohost-api \
|
|
yunohost-api.service
|
|
dh_systemd_enable --name=yunohost-firewall --no-enable \
|
|
yunohost-firewall.service
|