1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
po_dir = join_paths(meson.project_source_root(), 'po')
icondir = join_paths('icons', 'hicolor', 'scalable', 'apps')
install_data(
join_paths(icondir, ('@0@.svg').format(application_id)),
install_dir: join_paths(datadir, icondir),
)
icondir = join_paths('icons', 'hicolor', 'symbolic', 'apps')
install_data(
join_paths(icondir, 'org.gnome.Epiphany-symbolic.svg'),
install_dir: join_paths(datadir, icondir),
rename: '@0@-symbolic.svg'.format(application_id)
)
desktop_conf = configuration_data()
desktop_conf.set('icon', application_id)
desktop = i18n.merge_file(
input: configure_file(
input: files('org.gnome.Epiphany.desktop.in.in'),
output: 'org.gnome.Epiphany.desktop.in',
configuration: desktop_conf
),
output: '@0@.desktop'.format(application_id),
install: true,
install_dir: desktopdir,
po_dir: po_dir,
type: 'desktop'
)
metainfo_conf = configuration_data()
metainfo_conf.set('appid', application_id)
metainfo = i18n.merge_file(
input: configure_file(
input: files('org.gnome.Epiphany.metainfo.xml.in.in'),
output: 'org.gnome.Epiphany.metainfo.xml.in',
configuration: metainfo_conf
),
output: '@0@.metainfo.xml'.format(application_id),
install: true,
install_dir: join_paths(datadir, 'metainfo'),
po_dir: po_dir
)
# We need three custom_target() calls because Meson doesn't have very
# good support for GSettings yet. First, generate our GSettings enums
# in the build directory. Then, copy the gschema into the build
# directory to ensure it is in the same place as the enums file. Then
# we can run glib-compile-schemas on it. We have to compile schemas in
# the build directory to ensure that our tests don't fail if run on a
# system where epiphany is not already installed. epiphany will also
# look for schemas here if built in developer mode.
#
# https://github.com/mesonbuild/meson/issues/1687
generate_enums = custom_target('gsettings-enums',
input: '../lib/ephy-prefs.h',
output: 'org.gnome.Epiphany.enums.xml',
install: true,
install_dir: join_paths(datadir, 'glib-2.0', 'schemas'),
capture: true,
command: [find_program('glib-mkenums'),
'--comments', '<!-- @comment@ -->',
'--fhead', '<schemalist>',
'--vhead', ' <@type@ id="org.gnome.Epiphany.@EnumName@">',
'--vprod', ' <value nick="@valuenick@" value="@valuenum@"/>',
'--vtail', ' </@type@>',
'--ftail', '</schemalist>',
'@INPUT@'
]
)
copy_gschema = custom_target('copy-gschema-to-builddir',
input: 'org.gnome.epiphany.gschema.xml',
output: 'renamed-hack.gschema.xml',
command: ['cp', '@INPUT@', '@OUTPUT@']
)
compile_schemas = custom_target('glib-compile-schemas',
output: 'gschemas.compiled',
install: false,
command: [find_program('glib-compile-schemas'),
meson.current_build_dir()
],
depends: [generate_enums, copy_gschema]
)
install_data('org.gnome.epiphany.gschema.xml',
install_dir: join_paths(datadir, 'glib-2.0', 'schemas')
)
service_conf = configuration_data()
service_conf.set('appid', application_id)
service_conf.set('libexecdir', libexecdir)
configure_file(
input: 'org.gnome.Epiphany.SearchProvider.service.in',
output: '@0@.SearchProvider.service'.format(application_id),
configuration: service_conf,
install_dir: servicedir
)
configure_file(
input: 'org.gnome.Epiphany.WebAppProvider.service.in',
output: 'org.gnome.Epiphany.WebAppProvider.service',
configuration: service_conf,
install_dir: servicedir
)
search_provider_conf = configuration_data()
search_provider_conf.set('appid', application_id)
search_provider_conf.set('profile', profile != '' ? '/' + profile : '')
configure_file(
configuration: search_provider_conf,
input: files('org.gnome.Epiphany.SearchProvider.ini.in'),
install_dir: join_paths(datadir, 'gnome-shell', 'search-providers'),
output: '@0@.SearchProvider.ini'.format(application_id)
)
bookmarksconf = configuration_data()
bookmarksconf.set('pkgdatadir', pkgdatadir)
configure_file(
input: 'default-bookmarks.rdf.in',
output: 'default-bookmarks.rdf',
configuration: bookmarksconf,
install_dir: pkgdatadir
)
rst2man = find_program('rst2man', 'rst2man.py', required: get_option('man-pages'))
if rst2man.found()
custom_target('man',
input: 'epiphany.1.rst',
output: 'epiphany.1',
command: [
rst2man,
'--syntax-highlight=none',
'@INPUT@',
],
capture: true,
install: true,
install_dir: get_option('prefix') / get_option('mandir') / 'man1',
install_tag: 'doc',
)
endif
desktop_file_validate = find_program('desktop-file-validate', required: false)
if desktop_file_validate.found()
test(
'validate-desktop',
desktop_file_validate,
args: desktop.full_path(),
depends: desktop
)
endif
appstreamcli = find_program('appstreamcli', required: false)
if appstreamcli.found()
test(
'validate-metainfo', appstreamcli,
args: [
'validate', '--no-net', metainfo.full_path()
],
depends: metainfo
)
endif
|