File: dont_compress_manpages.patch

package info (click to toggle)
jacktrip 2.5.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 10,296 kB
  • sloc: cpp: 43,649; sh: 886; makefile: 152; xml: 24; ruby: 20; python: 15; ansic: 10
file content (19 lines) | stat: -rw-r--r-- 605 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Prevent buildsystem from gzipping manpages
 dh_installman does this for us
Author: IOhannes m zmölnig
Origin: Debian
Forwarded: not-needed
Last-Update: 2023-09-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- jacktrip.orig/meson.build
+++ jacktrip/meson.build
@@ -526,7 +526,7 @@
 			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',