blob: 1647df8942c6771b5b6509f05b23d4a0d95dcca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/make -f
export DH_VERBOSE=1
%:
dh $@
override_dh_auto_install:
dh_auto_install --destdir=$(CURDIR)/debian/pbuilder
override_dh_install:
dh_movefiles --sourcedir=debian/pbuilder
dh_install
override_dh_compress:
dh_compress -X.pdf
|