diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 27 |
1 files changed, 25 insertions, 2 deletions
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', |