blob: 0a8d6408c885b6941b70f1c9416c1392b573aa12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/make -f
%:
dh ${@}
# Override because our configure doesn't like extra arguments.
override_dh_auto_configure:
./configure --prefix=/usr
override_dh_builddeb:
dh_builddeb -- -Zgzip
# Override this step because it's very slow and likely
# unnecessary for us.
override_dh_strip_nondeterminism:
true
get-orig-source:
uscan --force-download --rename
|