2014-05-02 01:47:52 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
|
|
|
export DESTDIR=$(shell pwd)/debian/qubes-core-agent
|
|
|
|
|
|
|
|
%:
|
2014-09-29 22:57:55 +02:00
|
|
|
dh $@ --with systemd
|
2014-05-02 01:47:52 +02:00
|
|
|
|
|
|
|
override_dh_auto_build:
|
|
|
|
make all
|
|
|
|
|
|
|
|
override_dh_auto_install:
|
2014-09-29 22:57:55 +02:00
|
|
|
make install-common install-deb install-systemd
|
2014-05-02 01:47:52 +02:00
|
|
|
make -C qrexec install
|
|
|
|
|
2014-07-28 02:29:00 +02:00
|
|
|
override_dh_fixperms:
|
|
|
|
dh_fixperms -a -Xqfile-unpacker
|
2014-07-28 02:29:26 +02:00
|
|
|
|
2014-09-29 22:57:55 +02:00
|
|
|
override_dh_systemd_start:
|
|
|
|
dh_systemd_start --no-restart-on-upgrade
|