2021-04-04 00:22:09 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# rules makefile.
|
|
|
|
# Copyright (C) 2021 Alexandre Pujol <alexandre@pujol.io>
|
|
|
|
#
|
|
|
|
|
2021-09-27 21:32:30 +02:00
|
|
|
DH_OPTIONS ?=
|
2021-04-04 00:22:09 +02:00
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@ --with=config-package
|
|
|
|
|
|
|
|
override_dh_auto_configure:
|
2021-09-27 21:32:30 +02:00
|
|
|
./configure --distribution=debian --options=$(DH_OPTIONS)
|
2021-04-04 01:00:47 +02:00
|
|
|
|
|
|
|
override_dh_install:
|
2021-09-27 21:24:22 +02:00
|
|
|
mv systemd system
|
|
|
|
find system -type f -exec \
|
|
|
|
install -Dm0644 {} $$(pwd)/debian/apparmor.d/usr/lib/systemd/{}.d/apparmor.conf \;
|
2021-04-04 01:00:47 +02:00
|
|
|
dh_install
|