summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2019-08-10 16:54:21 +0100
committerSimon McVittie <smcv@debian.org>2019-08-10 16:58:40 +0100
commitb7373f5260fb153f85477aae90128e253c2f4e6d (patch)
tree5111ebc0e34e28528fd368978e113c35813470f8
parent36a55406a86ceee67ee720bc81eb4c7c00fce267 (diff)
downloadpango-b7373f5260fb153f85477aae90128e253c2f4e6d.tar.gz
Install PangoFc and PangoOT GObject-Introspection
If we don't install these, we can't load PangoXft and PangoFT2, which depend on them: $ GI_TYPELIB_PATH=${DESTDIR}/usr/lib/x86_64-linux-gnu/girepository-1.0 python3 ... >>> from gi.repository import PangoXft ... gi.RepositoryError: Typelib file for namespace 'PangoOT', version '1.0' not found Signed-off-by: Simon McVittie <smcv@debian.org>
-rw-r--r--pango/meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/pango/meson.build b/pango/meson.build
index 3e3a3eeb..99a9e4a6 100644
--- a/pango/meson.build
+++ b/pango/meson.build
@@ -240,6 +240,7 @@ if build_pangoft2
export_packages: 'pangoft2',
includes: [ pango_gir[0], 'fontconfig-2.0', ],
header: 'pango/pangoft2.h',
+ install: true,
extra_args: gir_args,
)
pangofc_gir_dep = declare_dependency(sources: pangofc_gir)
@@ -257,6 +258,7 @@ if build_pangoft2
export_packages: 'pangoft2',
includes: [ pangofc_gir[0], 'freetype2-2.0', ],
header: 'pango/pangoft2.h',
+ install: true,
extra_args: gir_args,
)
pangoot_gir_dep = declare_dependency(sources: pangoot_gir)