Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
appstream/compose/meson.build
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
169 lines (155 sloc)
4.8 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Meson build configuration for the AppStream Compose library | |
| appstream_compose_lib_inc = include_directories ('.') | |
| ascompose_src = [ | |
| 'asc-canvas.c', | |
| 'asc-compose.c', | |
| 'asc-directory-unit.c', | |
| 'asc-font.c', | |
| 'asc-globals.c', | |
| 'asc-hint.c', | |
| 'asc-hint-tags.c', | |
| 'asc-icon-policy.c', | |
| 'asc-image.c', | |
| 'asc-result.c', | |
| 'asc-unit.c', | |
| 'asc-utils-l10n.c', | |
| 'asc-utils-metainfo.c', | |
| 'asc-utils-screenshots.c', | |
| 'asc-utils-fonts.c', | |
| 'asc-utils.c' | |
| ] | |
| ascompose_pub_headers = [ | |
| 'appstream-compose.h', | |
| 'asc-canvas.h', | |
| 'asc-compose.h', | |
| 'asc-directory-unit.h', | |
| 'asc-globals.h', | |
| 'asc-hint.h', | |
| 'asc-icon-policy.h', | |
| 'asc-image.h', | |
| 'asc-result.h', | |
| 'asc-unit.h', | |
| 'asc-utils.h' | |
| ] | |
| ascompose_pub_enums = glib.mkenums_simple('asc-enums-types', | |
| sources: ascompose_pub_headers, | |
| install_header: true, | |
| install_dir: join_paths(get_option('includedir'), 'appstream-compose') | |
| ) | |
| ascompose_priv_headers = [ | |
| 'asc-canvas-private.h', | |
| 'asc-font.h', | |
| 'asc-font-private.h', | |
| 'asc-globals-private.h', | |
| 'asc-hint-tags.h', | |
| 'asc-utils-l10n.h', | |
| 'asc-utils-metainfo.h', | |
| 'asc-utils-screenshots.h', | |
| 'asc-utils-fonts.h', | |
| ] | |
| asclib_res = glib.compile_resources ( | |
| 'asc-resources', 'appstream-compose.gresource.xml', | |
| c_name: 'asc', | |
| source_dir: ['../data/compose'] | |
| ) | |
| # extra dependencies we need just for AppStream Compose | |
| cairo_dep = dependency('cairo', version: '>= 1.12') | |
| gdkpixbuf_dep = dependency('gdk-pixbuf-2.0') | |
| freetype_dep = dependency('freetype2') | |
| pango_dep = dependency('pango') | |
| fontconfig_dep = dependency('fontconfig') | |
| m_dep = cc.find_library('m', required: false) | |
| if get_option ('svg-support') | |
| rsvg_dep = dependency('librsvg-2.0', version: '>= 2.48') | |
| else | |
| rsvg_dep = dependency('', required: false) | |
| warning('Building without SVG support. Therefore appstream-compose will be unable to render SVG icons.') | |
| endif | |
| appstream_compose_lib = library ('appstream-compose', | |
| [ascompose_src, | |
| asclib_res, | |
| ascompose_pub_headers, | |
| ascompose_priv_headers, | |
| ascompose_pub_enums], | |
| soversion: '0', | |
| version: as_version, | |
| dependencies: [appstream_dep, | |
| m_dep, | |
| gio_dep, | |
| cairo_dep, | |
| gdkpixbuf_dep, | |
| rsvg_dep, | |
| freetype_dep, | |
| pango_dep, | |
| fontconfig_dep, | |
| yaml_dep], | |
| include_directories: [root_inc_dir], | |
| c_args: ['-DASC_COMPILATION', | |
| '-DI_KNOW_THE_APPSTREAM_COMPOSE_API_IS_SUBJECT_TO_CHANGE'], | |
| install: true | |
| ) | |
| pkgc.generate( | |
| appstream_compose_lib, | |
| version: as_version, | |
| name: 'appstream-compose', | |
| description: 'Helper functions to generate AppStream metadata and auxiliary data.', | |
| filebase: 'appstream-compose', | |
| subdirs: 'appstream-compose', | |
| requires: ['glib-2.0', | |
| 'gio-2.0', | |
| 'gobject-2.0', | |
| 'gdk-pixbuf-2.0', | |
| 'appstream'], | |
| ) | |
| appstream_compose_dep = declare_dependency( | |
| link_with: appstream_compose_lib, | |
| sources: [ | |
| ascompose_pub_headers, | |
| ascompose_pub_enums | |
| ], | |
| dependencies: [appstream_dep, | |
| glib_dep, | |
| gobject_dep, | |
| gio_dep, | |
| gdkpixbuf_dep], | |
| include_directories: [appstream_compose_lib_inc] | |
| ) | |
| # Meson adds (in our case) bogus Requires.private lines which break | |
| # builds using libappstream. Fix this issue by post-processing the file. | |
| sed_prog = find_program('sed') | |
| pc_fixup = run_command(sed_prog, | |
| '-i.bak', | |
| '/^Requires.private\|^Libs.private/ d', | |
| join_paths(meson.project_build_root(), 'meson-private', 'appstream-compose.pc'), | |
| check: false) | |
| if pc_fixup.returncode() != 0 | |
| error('Unable to fix up the .pc file:\n' + pc_fixup.stderr()) | |
| endif | |
| install_headers(ascompose_pub_headers, subdir: 'appstream-compose') | |
| if get_option ('gir') | |
| asc_gir_typelib = glib.generate_gir( | |
| appstream_compose_lib, | |
| sources: ascompose_src + ascompose_pub_headers + ascompose_pub_enums, | |
| nsversion: '1.0', | |
| namespace: 'AppStreamCompose', | |
| symbol_prefix: 'asc', | |
| identifier_prefix: 'Asc', | |
| export_packages: 'appstream-compose', | |
| includes: [ | |
| as_gir, | |
| 'GObject-2.0', | |
| 'Gio-2.0', | |
| 'GdkPixbuf-2.0' | |
| ], | |
| header: 'appstream-compose.h', | |
| include_directories: [appstream_lib_inc], | |
| dependencies: [appstream_dep], | |
| extra_args: [ | |
| '-DASC_COMPILATION', | |
| '-DI_KNOW_THE_APPSTREAM_COMPOSE_API_IS_SUBJECT_TO_CHANGE' | |
| ], | |
| install: true | |
| ) | |
| asc_gir = asc_gir_typelib[0] | |
| asc_typelib = asc_gir_typelib[1] | |
| endif |