33da315e17
This reverts commit 5dfcf06ef4
.
python3-daemon isn't widespread enough yet - for Debian jessie available
only in packports.
In addition to the revert itself, adjust packaging for this change
(mostly for Debian).
29 lines
558 B
Makefile
Executable File
29 lines
558 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
export PYTHON_PREFIX_ARG=--install-layout=deb
|
|
|
|
include /usr/share/dpkg/default.mk
|
|
export DESTDIR=$(shell pwd)/debian/tmp
|
|
|
|
%:
|
|
dh $@ --with systemd,python2 --with=config-package
|
|
|
|
override_dh_auto_build:
|
|
make all
|
|
|
|
override_dh_auto_install:
|
|
make install-deb
|
|
make -C qrexec install
|
|
|
|
override_dh_fixperms:
|
|
dh_fixperms -a -Xqfile-unpacker
|
|
|
|
override_dh_systemd_start:
|
|
dh_systemd_start --no-restart-on-upgrade
|
|
|
|
override_dh_install:
|
|
dh_install --fail-missing
|