2006-03-15 05:05:53 +01:00
|
|
|
#!/usr/bin/make -f
|
2009-02-17 03:49:26 +01:00
|
|
|
%:
|
2015-06-09 23:25:26 +02:00
|
|
|
LC_ALL=C.UTF-8 TZ=UTC dh $@
|
2009-02-17 03:49:26 +01:00
|
|
|
|
|
|
|
override_dh_auto_configure:
|
2009-02-20 00:58:46 +01:00
|
|
|
# keeps it out of /usr/local
|
2009-02-17 03:49:26 +01:00
|
|
|
dh_auto_configure -- PREFIX=/usr
|
2009-02-16 04:08:04 +01:00
|
|
|
|
2009-02-17 03:49:26 +01:00
|
|
|
override_dh_compress:
|
2009-02-20 00:58:46 +01:00
|
|
|
# avoid compressing files in the doc wiki
|
2009-02-16 04:08:04 +01:00
|
|
|
dh_compress -Xhtml
|
|
|
|
|
2009-02-17 03:49:26 +01:00
|
|
|
override_dh_auto_clean:
|
2009-02-20 00:58:46 +01:00
|
|
|
# distclean moans about MANIFEST, this is quieter
|
2009-02-27 21:40:42 +01:00
|
|
|
if [ -e Makefile ]; then $(MAKE) realclean; fi
|