configure version in man pages

Signed-off-by: Stephan Lachnit <stephanlachnit@protonmail.com>
This commit is contained in:
Stephan Lachnit 2020-05-20 18:22:01 +02:00 committed by afayaz-feral
parent d47dea92de
commit 3d49f87308
3 changed files with 10 additions and 3 deletions

View File

@ -1,6 +1,6 @@
.\" Manpage for gamemoded. .\" Manpage for gamemoded.
.\" Contact linux-contact@feralinteractive.com to correct errors or typos. .\" Contact linux-contact@feralinteractive.com to correct errors or typos.
.TH gamemoded 8 "4 May 2020" "1.6-dev" "gamemoded man page" .TH gamemoded 8 "4 May 2020" "@GAMEMODE_VERSION@" "gamemoded man page"
.SH NAME .SH NAME
gamemoded \- daemon that optimises system performance on demand gamemoded \- daemon that optimises system performance on demand
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -1,6 +1,6 @@
.\" Manpage for gamemoderun. .\" Manpage for gamemoderun.
.\" Contact linux-contact@feralinteractive.com to correct errors or typos. .\" Contact linux-contact@feralinteractive.com to correct errors or typos.
.TH gamemoded 1 "4 May 2020" "1.6-dev" "gamemoderun man page" .TH gamemoded 1 "4 May 2020" "@GAMEMODE_VERSION@" "gamemoderun man page"
.SH NAME .SH NAME
gamemoderun \- invoke gamemode into any program gamemoderun \- invoke gamemode into any program
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -2,6 +2,7 @@ data_conf = configuration_data()
data_conf.set('BINDIR', path_bindir) data_conf.set('BINDIR', path_bindir)
data_conf.set('LIBEXECDIR', path_libexecdir) data_conf.set('LIBEXECDIR', path_libexecdir)
data_conf.set('GAMEMODE_PREFIX', path_prefix) data_conf.set('GAMEMODE_PREFIX', path_prefix)
data_conf.set('GAMEMODE_VERSION', meson.project_version())
# Set gamemoderun lib dir # Set gamemoderun lib dir
gamemoderun_lib_dir = get_option('with-gamemoderun-lib-dir') gamemoderun_lib_dir = get_option('with-gamemoderun-lib-dir')
@ -68,8 +69,14 @@ install_man(
install_dir: mandir, install_dir: mandir,
) )
gamemoderun_manpage = configure_file(
input: files('gamemoderun.1.in'),
output: 'gamemoderun.1',
configuration: data_conf,
)
install_man( install_man(
files('gamemoderun.1'), gamemoderun_manpage,
install_dir: mandir, install_dir: mandir,
) )