From 1485cfb36cbdc2a079f73be16670cb3e64567852 Mon Sep 17 00:00:00 2001 From: Matt Jolly Date: Tue, 16 Jul 2024 21:23:28 +1000 Subject: Generate pkg-config files directly - Remove 'pkgconfig' subdir - use meson 'pkgconfig' module to generate and install appropriate .pc files when required. - add `rc_path` variable to installed pkgconfig files Signed-off-by: Matt Jolly --- meson.build | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 6ee4466b..71f8a3ea 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,8 @@ project('OpenRC', 'c', 'prefix=/usr', 'warning_level=3', ], - meson_version : '>=0.53.2') + meson_version : '>=0.56.0' # pkgconfig dict support +) cc = meson.get_compiler('c') fs = import('fs') @@ -207,7 +208,6 @@ subdir('etc') subdir('init.d') subdir('local.d') subdir('man') -subdir('pkgconfig') subdir('sh') subdir('src') subdir('support') @@ -215,6 +215,29 @@ subdir('sysctl.d') subdir('test') subdir('zsh-completion') +if get_option('pkgconfig') + pkg = import('pkgconfig') + + einfo_pkgconf = pkg.generate( + name : 'einfo', + description : 'Pretty console informational display', + version : meson.project_version(), + libraries : libeinfo, + subdirs : ['einfo'], + ) + + openrc_pkgconf = pkg.generate( + name : 'OpenRC', + description : 'Universal init system', + version : meson.project_version(), + libraries : librc, + subdirs : ['openrc'], + variables: { + 'rc_path': rc_libexecdir, + } + ) +endif + meson.add_install_script('tools/meson_runlevels.sh', os, get_option('newnet') ? 'yes' : 'no', -- cgit v1.2.3