15 lines
465 B
Meson
15 lines
465 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'),
|
|
)
|