summaryrefslogtreecommitdiffstats
path: root/debian/rules
blob: 7bb7904479c9ddd50aec4e2ba80997d38166dc4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/make -f

%:
	dh ${@}

override_dh_auto_install:
	dh_auto_install -- DESTDIR=$(CURDIR)/debian/bfh-base-system

execute_after_dh_auto_install:
	# shutdown
	mkdir -p debian/bfh-container/sbin
	for FILE in halt poweroff reboot shutdown coldreboot; \
	do \
		cp debian/local/shutdown debian/bfh-container/sbin/$${FILE}; \
	done

	mkdir -p debian/bfh-container/usr/sbin
	for FILE in pm-hibernate pm-suspend pm-suspend-hybrid; \
	do \
		cp debian/local/shutdown debian/bfh-container/usr/sbin/$${FILE}; \
	done

	mkdir -p debian/bfh-container/usr/share/container
	cp debian/local/shutdown.txt debian/bfh-container/usr/share/container

	# removing useless files
	rm -f debian/tmp/usr/share/doc/*/CHANGELOG.txt
	rm -f debian/tmp/usr/share/doc/*/LICENSE.txt
	rm -f debian/tmp/usr/share/doc/*/VERSION.txt