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
|
$NetBSD: patch-gio_gdbus-2.0_codegen_meson.build,v 1.3 2022/11/23 10:41:41 adam Exp $
Leave gdbus-2.0/codegen sudirectory to devel/gdbus-codegen package.
--- gio/gdbus-2.0/codegen/meson.build.orig 2022-10-25 12:53:22.000000000 +0000
+++ gio/gdbus-2.0/codegen/meson.build
@@ -20,6 +20,7 @@ gdbus_codegen_conf.set('DATADIR', glib_d
gdbus_codegen = configure_file(input : 'gdbus-codegen.in',
output : 'gdbus-codegen',
install_dir : get_option('bindir'),
+ install : false,
install_tag : 'bin-devel',
configuration : gdbus_codegen_conf
)
@@ -32,6 +33,7 @@ gdbus_codegen_built_files = []
gdbus_codegen_built_files += configure_file(input : 'config.py.in',
output : 'config.py',
install_dir : codegen_dir,
+ install : false,
install_tag : 'bin-devel',
configuration : gdbus_codegen_conf)
@@ -40,6 +42,7 @@ foreach f : gdbus_codegen_files
# and then install it too so that it can be used after installation
gdbus_codegen_built_files += configure_file(input : f, output : f,
install_dir : codegen_dir,
+ install : false,
install_tag : 'bin-devel',
copy : true)
endforeach
|