From d1c7b4354f7445743da4a2bb1c714dc283c39a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Wed, 25 Mar 2020 02:20:19 +0100 Subject: [PATCH] gobject-introspection: fix another bug Install the tests files in /usr/share/gobject-introspection-1.0/tests and not above in /usr/share/gobject-introspection-1.0. --- srcpkgs/gobject-introspection/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/gobject-introspection/template b/srcpkgs/gobject-introspection/template index 7f576b4f8f6..f47dacfe089 100644 --- a/srcpkgs/gobject-introspection/template +++ b/srcpkgs/gobject-introspection/template @@ -1,7 +1,7 @@ # Template file for 'gobject-introspection' pkgname=gobject-introspection version=1.64.0 -revision=4 +revision=5 build_style=meson pycompile_dirs="usr/lib/${pkgname}/giscanner" hostmakedepends="flex pkg-config" @@ -44,11 +44,11 @@ post_install() { # For cross builds copy the not installed tests subdirectory if [ "$CROSS_BUILD" ]; then - vmkdir usr/share/gobject-introspection-1.0 + vmkdir usr/share/gobject-introspection-1.0/tests for f in scanner/annotation.? scanner/drawable.? scanner/foo.? \ scanner/regress.? scanner/utility.? scanner/warnlib.? \ gimarshallingtests.? gitestmacros.h; do - vcopy tests/$f usr/share/gobject-introspection-1.0 + vcopy tests/$f usr/share/gobject-introspection-1.0/tests done fi