summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: ba4bf71e32261d925c97fd68245502bc74efa622 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use inc::Module::Install;

name 'init-system-helpers';
version '1.0';

install_script 'deb-systemd-helper';
install_script 'dh_systemd_enable';
install_script 'dh_systemd_start';

postamble <<'END_OF_MAKEFILE';
install:: extra_install
pure_install:: extra_install
install_vendor:: extra_install

extra_install:
	install -d $(DESTDIR)/usr/share/debhelper/autoscripts
	install -m 640 autoscripts/* $(DESTDIR)/usr/share/debhelper/autoscripts
END_OF_MAKEFILE

WriteAll;