1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2021 IƱigo Martinez <inigomartinez@gmail.com>
ent_conf = {
'PACKAGE': mbim_name,
'PACKAGE_BUGREPORT': mbim_name + '-devel@lists.freedesktop.org',
'PACKAGE_NAME': mbim_name,
'PACKAGE_STRING': '@0@ @1@'.format(mbim_name, mbim_version),
'PACKAGE_TARNAME': mbim_name,
'PACKAGE_URL': '',
'PACKAGE_VERSION': mbim_version,
}
gtkdocentities_ent = configure_file(
input: 'gtkdocentities.ent.in',
output: '@BASENAME@',
configuration: ent_conf,
)
|