c57defda92
Not that libfprint is long to write, but in case we'll ever change the basename, we do it once.
12 lines
622 B
Meson
12 lines
622 B
Meson
ent_conf = configuration_data()
|
|
ent_conf.set('PACKAGE', meson.project_name())
|
|
ent_conf.set('PACKAGE_BUGREPORT', 'https://gitlab.freedesktop.org/libfprint/libfprint/issues')
|
|
ent_conf.set('PACKAGE_NAME', meson.project_name())
|
|
ent_conf.set('PACKAGE_STRING', meson.project_name())
|
|
ent_conf.set('PACKAGE_TARNAME', 'libfprint-' + meson.project_version())
|
|
ent_conf.set('PACKAGE_URL', 'https://fprint.freedesktop.org/')
|
|
ent_conf.set('PACKAGE_VERSION', meson.project_version())
|
|
ent_conf.set('PACKAGE_API_VERSION', '1.0')
|
|
configure_file(input: 'gtkdocentities.ent.in',
|
|
output: 'gtkdocentities.ent',
|
|
configuration: ent_conf)
|