blob: cd5af1f1fd2a78caa49e976da7699b6061a9962d (
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_dh_auto_build:
# disabled
override_dh_auto_test:
# disabled
execute_after_dh_auto_install:
# removing unused 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
override_dh_missing:
dh_missing --fail-missing
|