mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-08 20:22:30 +01:00
15 lines
475 B
Meson
15 lines
475 B
Meson
pkg_conf = configuration_data()
|
|
prefix = get_option('prefix')
|
|
pkg_conf.set('prefix', prefix)
|
|
pkg_conf.set('VERSION', meson.project_version())
|
|
pkg_conf.set('hexchatlibdir', join_paths('${prefix}', plugindir))
|
|
pkg_conf.set('includedir', join_paths('${prefix}', get_option('includedir')))
|
|
|
|
configure_file(
|
|
input: 'hexchat-plugin.pc.in',
|
|
output: 'hexchat-plugin.pc',
|
|
configuration: pkg_conf,
|
|
install: true,
|
|
install_dir: join_paths(get_option('libdir'), 'pkgconfig'),
|
|
)
|