blob: 2aab029654a10f878843a484646e663d10a9a21f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | #!/usr/bin/make -f
# -*- makefile -*-
PACKAGE = backupninja
TMP = $(CURDIR)/debian/$(PACKAGE)
%:
	dh $@ --with autoreconf
override_dh_auto_install:
	dh_auto_install
	chmod -x $(TMP)/usr/lib/backupninja/parseini
	chmod -x $(TMP)/usr/lib/backupninja/vserver
	rm $(TMP)/usr/share/backupninja/example.*
override_dh_compress:
	dh_compress -Xexample
override_dh_installchangelogs:
	dh_installchangelogs ChangeLog
 |