meson: install the man pages for the command line tools
authorChristoph Reiter <reiter.christoph@gmail.com>
Sun, 20 May 2018 11:35:52 +0000 (13:35 +0200)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 20 May 2018 12:29:30 +0000 (13:29 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=796274

tools/meson.build

index 98757eb..57595fb 100644 (file)
@@ -7,6 +7,7 @@ executable('gst-device-monitor-@0@'.format(api_version),
   include_directories: [configinc],
   dependencies : tool_deps,
 )
+install_man('gst-device-monitor-@0@.1'.format(api_version))
 
 executable('gst-discoverer-@0@'.format(api_version),
   'gst-discoverer.c',
@@ -15,6 +16,7 @@ executable('gst-discoverer-@0@'.format(api_version),
   include_directories: [configinc],
   dependencies : tool_deps,
 )
+install_man('gst-discoverer-@0@.1'.format(api_version))
 
 executable('gst-play-@0@'.format(api_version),
   'gst-play.c', 'gst-play-kb.c',
@@ -23,3 +25,4 @@ executable('gst-play-@0@'.format(api_version),
   include_directories: [configinc],
   dependencies : tool_deps + [libm],
 )
+install_man('gst-play-@0@.1'.format(api_version))