mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
19 lines
402 B
Makefile
Executable File
19 lines
402 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# rules makefile.
|
|
# Copyright (C) 2021 Alexandre Pujol <alexandre@pujol.io>
|
|
#
|
|
|
|
DH_OPTIONS ?=
|
|
|
|
%:
|
|
dh $@ --with=config-package
|
|
|
|
override_dh_auto_configure:
|
|
./configure --distribution=debian --options=$(DH_OPTIONS)
|
|
|
|
override_dh_install:
|
|
mv systemd system
|
|
find system -type f -exec \
|
|
install -Dm0644 {} $$(pwd)/debian/apparmor.d/usr/lib/systemd/{}.d/apparmor.conf \;
|
|
dh_install
|