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
|
project('yelp', 'c',
version : '49.0',
meson_version : '>= 1.3',
default_options : [
'warning_level=1',
'c_std=gnu89'
]
)
prefix = get_option('prefix')
localedir = get_option('localedir')
datadir = get_option('datadir')
libdir = get_option('libdir')
includedir = get_option('includedir')
buildtype = get_option('buildtype')
lib_version = 1
yelp_conf = configuration_data()
if buildtype == 'debug' or buildtype == 'debugoptimized'
yelp_conf.set('YELP_DEBUG', true)
endif
yelp_conf.set_quoted('PACKAGE', 'yelp')
yelp_conf.set_quoted('GETTEXT_PACKAGE', 'yelp')
yelp_conf.set_quoted('VERSION', meson.project_version())
yelp_conf.set_quoted('LOCALEDIR', join_paths(prefix, localedir))
yelp_conf.set_quoted('DATADIR', join_paths(prefix, datadir))
cc = meson.get_compiler('c')
m_dep = cc.find_library('m', required : false)
gio_dep = dependency('gio-2.0', version: '>= 2.67.4')
gio_unix_dep = dependency('gio-unix-2.0')
gtk_unix_print_dep = dependency('gtk4-unix-print')
gtk_dep = dependency('gtk4', version: '>= 4.16.0')
libadwaita_dep = dependency('libadwaita-1', version: '>= 1.6.0')
libxml_dep = dependency('libxml-2.0', version: '>= 2.6.5')
libxslt_dep = dependency('libxslt', version: '>= 1.1.4')
libexslt_dep = dependency('libexslt', version: '>= 0.8.1')
sqlite_dep = dependency('sqlite3')
webkitgtk_dep = dependency('webkitgtk-6.0')
webkitgtk_web_process_extension_dep = dependency('webkitgtk-web-process-extension-6.0')
yelp_xsl_dep = dependency('yelp-xsl', version: '>= 42.3')
lzma_dep = dependency('liblzma',
version: '>= 4.9',
required: get_option('lzma'))
glib_compile_schemas = find_program('glib-compile-schemas', required: false)
desktop_file_validate = find_program('desktop-file-validate', required: false)
appstreamcli = find_program('appstreamcli', required: false)
if lzma_dep.found()
yelp_conf.set('ENABLE_LZMA', true)
endif
if get_option('bzip2').enabled()
# Do not fail the configuration step even if we explicitly enabled
# bzip2. If there is no pkg-config file, we will check for an
# existence of the library and that will be a point of failure when
# library is really absent on the system.
bzip2_dep = dependency('bzip2',
required: false)
else
bzip2_dep = dependency('bzip2',
required: get_option('bzip2'))
endif
if not bzip2_dep.found()
bzip2_dep = cc.find_library('bz2',
required: get_option('bzip2'))
endif
if bzip2_dep.found()
yelp_conf.set('ENABLE_BZ2', true)
endif
itstool = find_program('itstool')
r = run_command(itstool, '--version', check: true)
if r.returncode() != 0
error('failed to run itstool --version')
endif
parts = r.stdout().strip().split()
if parts.length() != 2
error('unexpected output from itstool --version')
endif
if parts[1].version_compare('<1.2.0')
error('itstool >= 1.2.0 is required to build the translation XML files')
endif
xsl_xsltdir = yelp_xsl_dep.get_variable(pkgconfig: 'xsltdir')
xsl_db2xhtml = yelp_xsl_dep.get_variable(pkgconfig: 'db2xhtml')
xsl_mal2xhtml = yelp_xsl_dep.get_variable(pkgconfig: 'mal2xhtml')
xsl_color = '@0@/common/color.xsl'.format(xsl_xsltdir)
xsl_icons = '@0@/common/icons.xsl'.format(xsl_xsltdir)
xsl_html = '@0@/common/html.xsl'.format(xsl_xsltdir)
xsl_tmpl = '@0@/common/tmpl.xsl'.format(xsl_xsltdir)
xsl_jsdir = yelp_xsl_dep.get_variable(pkgconfig: 'jsdir')
xsl_gettext = yelp_xsl_dep.get_variable(pkgconfig: 'gettext')
xsl_icondir = yelp_xsl_dep.get_variable(pkgconfig: 'icondir')
yelp_xsl_conf = configuration_data()
yelp_xsl_conf.set('XSL_DB2XHTML', xsl_db2xhtml)
yelp_xsl_conf.set('XSL_MAL2XHTML', xsl_mal2xhtml)
yelp_xsl_conf.set('XSL_COLOR', xsl_color)
yelp_xsl_conf.set('XSL_ICONS', xsl_icons)
yelp_xsl_conf.set('XSL_HTML', xsl_html)
yelp_xsl_conf.set('XSL_TMPL', xsl_tmpl)
yelp_xsl_conf.set('XSL_JSDIR', xsl_jsdir)
yelp_xsl_conf.set('XSL_GETTEXT', xsl_gettext)
yelp_xsl_conf.set('DATADIR', join_paths(prefix, datadir))
yelp_web_process_extensions_dir = libdir / 'yelp-@0@'.format(lib_version) / 'web-process-extensions'
yelp_conf.set_quoted('YELP_ICON_PATH', xsl_icondir)
yelp_conf.set_quoted('YELP_WEB_PROCESS_EXTENSIONS_DIR',
prefix / yelp_web_process_extensions_dir)
configure_file(output: 'config.h',
configuration: yelp_conf)
configinc = include_directories('.')
libyelpinc = include_directories('libyelp')
gnome = import('gnome')
i18n = import('i18n')
desktop_file = i18n.merge_file(
input: 'org.gnome.Yelp.desktop.in',
output: 'org.gnome.Yelp.desktop',
install: true,
install_dir: join_paths(datadir, 'applications'),
po_dir: join_paths(meson.project_source_root(), 'po'),
type: 'desktop')
# Validate Desktop file
if desktop_file_validate.found()
test(
'validate-desktop',
desktop_file_validate,
args: [
desktop_file.full_path()
],
depends: desktop_file,
)
endif
subdir('libyelp')
subdir('src')
subdir('data')
subdir('po')
gnome.post_install(
gtk_update_icon_cache: true,
glib_compile_schemas: true,
update_desktop_database: true,
)
|