Files
xf86-video-intel/man/meson.build
Ville Syrjälä 781fd07e55 meson: Add meson build system
Allow building the driver with meson. Could probably use
plenty of cleanups, but at least it gives me a working driver.
And I think I managed to make it build everything that
autotools builds.

Quite a few compiler warnings were suppressed as well. Might
want to look at those at some point.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
2018-02-06 13:12:33 +00:00

24 lines
790 B
Meson

configure_file(input : 'intel.man',
output : 'intel.4',
command : [
'sed',
'-e',
's/__appmansuffix__/@0@/g'.format(man_config.get('appmansuffix')),
'-e',
's/__filemansuffix__/@0@/g'.format(man_config.get('filemansuffix')),
'-e',
's/__drivermansuffix__/@0@/g'.format(man_config.get('drivermansuffix')),
'-e',
's/__miscmansuffix__/@0@/g'.format(man_config.get('miscmansuffix')),
'-e',
's/__xservername__/@0@/g'.format(man_config.get('xservername')),
'-e',
's/__xconfigfile__/@0@/g'.format(man_config.get('xconfigfile')),
'-e',
's/__vendorversion__/@0@/g'.format(man_config.get('vendorversion')),
'@INPUT@'
],
capture : true,
install_dir: join_paths(get_option('mandir'), 'man4'),
install : true)