From 93ca226c67e6a9fd23490b83bf543e285addb814 Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Tue, 1 Sep 2015 23:18:41 +0200 Subject: [PATCH] (trunk-1626) Crude workaround for the fact that debian wants to compress fonts used by the manual --- debian/terminator.postinst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/terminator.postinst b/debian/terminator.postinst index cf5122e2..d3ebb076 100755 --- a/debian/terminator.postinst +++ b/debian/terminator.postinst @@ -8,4 +8,10 @@ if [ "$1" = "configure" ]; then x-terminal-emulator.1.gz /usr/share/man/man1/terminator.1.gz fi +for dname in `find /usr/share/doc/terminator/html*/_static/fonts/ -type d` /usr/share/doc/terminator/apidoc/_static/fonts/; do + if [ -d ${dname} ]; then + gunzip -f ${dname}/*.gz + fi +done + #DEBHELPER#