Prevent buildsystem from gzipping manpages
authorDebian Multimedia Maintainers <debian-multimedia@lists.debian.org>
Mon, 25 Sep 2023 12:08:27 +0000 (14:08 +0200)
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
Mon, 25 Sep 2023 12:08:27 +0000 (14:08 +0200)
Origin: Debian
Forwarded: not-needed
Last-Update: 2023-09-25

dh_installman does this for us
Last-Update: 2023-09-25
Gbp-Pq: Name dont_compress_manpages.patch

meson.build

index 7b58a642a3a314e5987fbe3c95db725d9ab1d0ff..4795753e1de41a471b5ed5746e18eb85a14f2365 100644 (file)
@@ -306,7 +306,7 @@ if (host_machine.system() == 'linux')
                        command: [help2man, help2man_opts, '--output=@OUTPUT@', jacktrip],
                        install: not gzip.found(),
                        install_dir: get_option('mandir') / 'man1')
-               if gzip.found()
+               if gzip.found() or false
                        custom_target('jacktrip.1.gz',
                                input: manfile,
                                output: 'jacktrip.1.gz',
@@ -324,4 +324,4 @@ summary({'JACK': jack_dep.found(),
 summary({'Application ID': application_id,
        'GUI': not get_option('nogui'),
        'WAIR': get_option('wair'),
-       'Manpage': help2man.found()}, bool_yn: true, section: 'Configuration')
\ No newline at end of file
+       'Manpage': help2man.found()}, bool_yn: true, section: 'Configuration')