aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-03-14 14:26:43 -0400
committerDavid Robillard <d@drobilla.net>2024-03-14 14:27:19 -0400
commit3cbb403879bd9adb622b8a868800e75f0d0dd503 (patch)
treee527ca419e75bc67173c5f14cb733e82cd5952e2
parentce4a6f7ec4dc9191bcb7a0efe91770a53500b5bf (diff)
downloadjalv-3cbb403879bd9adb622b8a868800e75f0d0dd503.tar.gz
jalv-3cbb403879bd9adb622b8a868800e75f0d0dd503.tar.bz2
jalv-3cbb403879bd9adb622b8a868800e75f0d0dd503.zip
Add option to install tool man pages
-rw-r--r--NEWS5
-rw-r--r--meson.build4
-rw-r--r--meson_options.txt3
3 files changed, 9 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 8119cae..5285c35 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
-jalv (1.6.9) stable; urgency=medium
+jalv (1.6.9) unstable; urgency=medium
* Add missing short versions of command line options
+ * Add option to install tool man pages
* Build Qt UI with -fPIC
* Clean up command line help output
* Fix clashing command line options
@@ -9,7 +10,7 @@ jalv (1.6.9) stable; urgency=medium
* Switch to external zix dependency
* Use Gtk switches instead of checkboxes for toggle controls
- -- David Robillard <d@drobilla.net> Sun, 11 Dec 2022 21:51:58 +0000
+ -- David Robillard <d@drobilla.net> Thu, 14 Mar 2024 18:26:10 +0000
jalv (1.6.8) stable; urgency=medium
diff --git a/meson.build b/meson.build
index 3130f1d..71da5e2 100644
--- a/meson.build
+++ b/meson.build
@@ -409,7 +409,9 @@ endif
# Documentation #
#################
-subdir('doc')
+if not get_option('man').disabled()
+ subdir('doc')
+endif
#########
# Tests #
diff --git a/meson_options.txt b/meson_options.txt
index 77cc20d..b5979d5 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -19,6 +19,9 @@ option('jack', type: 'feature', value: 'auto', yield: true,
option('lint', type: 'boolean', value: false, yield: true,
description: 'Run code quality checks')
+option('man', type: 'feature', value: 'enabled', yield: true,
+ description: 'Install man pages')
+
option('posix', type: 'feature', value: 'auto', yield: true,
description: 'Use POSIX system facilities')