meson.build: Allow to install the private extension 64/23764/4
authorMarius Vlad <marius.vlad@collabora.com>
Fri, 7 Feb 2020 12:03:18 +0000 (14:03 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Fri, 14 Feb 2020 11:38:05 +0000 (11:38 +0000)
This way clients can use wayland-scanner to generate their client
headers, and do not need to copy manually the extension.

Also, generate a pkgconfig file otherwise clients will have a hard time
finding the proper pkgdatadir path in order to get the agl-shell xml
file.

Bug-AGL: SPEC-3167

Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Id62e49b57c8864e0bdb695c03198eac782efcbeb

meson.build

index 294d82f..e3a6631 100644 (file)
@@ -10,6 +10,8 @@ project('agl-compositor',
 )
 
 config_h = configuration_data()
+agl_compositor_version = '0.0.13'
+pkgconfig = import('pkgconfig')
 
 cc = meson.get_compiler('c')
 add_project_arguments(
@@ -100,6 +102,10 @@ else
   local_dep = []
 endif
 
+dir_data = join_paths(prefix_path, get_option('datadir'))
+dir_data_agl_compositor = join_paths('agl-compositor', 'protocols')
+dir_data_pc = join_paths(dir_data, 'pkgconfig')
+
 deps_libweston = [
   dependency('wayland-server'),
   dependency('libweston-6'),
@@ -136,3 +142,20 @@ exe_agl_compositor = executable(
        dependencies: deps_libweston,
        install: true
 )
+
+pkgconfig.generate(
+        filebase: 'agl-compositor-@0@-protocols'.format(agl_compositor_version),
+        name: 'agl-compositor private protocols',
+        version: agl_compositor_version,
+        description: 'agl-compositor protocol files',
+        variables: [
+                'datarootdir=' + join_paths('${prefix}', get_option('datadir')),
+                'pkgdatadir=' + join_paths('${pc_sysrootdir}${datarootdir}', dir_data_agl_compositor)
+        ],
+        install_dir: dir_data_pc
+)
+
+install_data(
+        [ agl_shell_xml ],
+        install_dir: join_paths(dir_data, dir_data_agl_compositor)
+)