From 59c2b8a99053d1d0bdf232e4e21ff64157a67567 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Fri, 25 Sep 2020 21:48:18 +0200 Subject: [PATCH] meson: Add back forgotten manpages Thanks @dantob for noticing that on the AUR package. --- desmume/src/frontend/posix/cli/meson.build | 2 ++ desmume/src/frontend/posix/gtk-glade/meson.build | 1 + desmume/src/frontend/posix/gtk/meson.build | 1 + 3 files changed, 4 insertions(+) diff --git a/desmume/src/frontend/posix/cli/meson.build b/desmume/src/frontend/posix/cli/meson.build index 6f731fb46..30143b72c 100644 --- a/desmume/src/frontend/posix/cli/meson.build +++ b/desmume/src/frontend/posix/cli/meson.build @@ -22,3 +22,5 @@ executable('desmume-cli', link_with: libdesmume, install: true, ) + +install_data('doc/desmume-cli.1', install_dir: get_option('datadir') / 'man' / 'man1') diff --git a/desmume/src/frontend/posix/gtk-glade/meson.build b/desmume/src/frontend/posix/gtk-glade/meson.build index adce936f9..01bea16a4 100644 --- a/desmume/src/frontend/posix/gtk-glade/meson.build +++ b/desmume/src/frontend/posix/gtk-glade/meson.build @@ -42,4 +42,5 @@ executable('desmume-glade', install_data('desmume-glade.desktop', install_dir: get_option('datadir') / 'applications') install_data('glade/DeSmuME.xpm', install_dir: get_option('datadir') / 'pixmaps') +install_data('doc/desmume-glade.1', install_dir: get_option('datadir') / 'man' / 'man1') install_data(['glade/DeSmuMe_Dtools.glade', 'glade/DeSmuMe.glade', 'glade/DeSmuME.xpm'], install_dir: get_option('datadir') / 'glade') diff --git a/desmume/src/frontend/posix/gtk/meson.build b/desmume/src/frontend/posix/gtk/meson.build index 1433736b8..389952192 100644 --- a/desmume/src/frontend/posix/gtk/meson.build +++ b/desmume/src/frontend/posix/gtk/meson.build @@ -36,3 +36,4 @@ executable('desmume', install_data('desmume.desktop', install_dir: get_option('datadir') / 'applications') install_data('DeSmuME.svg', install_dir: get_option('datadir') / 'pixmaps') +install_data('doc/desmume.1', install_dir: get_option('datadir') / 'man' / 'man1')