forked from fedora-modularity/libmodulemd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
152 lines (128 loc) · 3.78 KB
/
meson.build
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
# This file is part of libmodulemd
# Copyright (C) 2017-2018 Stephen Gallagher
#
# Fedora-License-Identifier: MIT
# SPDX-2.0-License-Identifier: MIT
# SPDX-3.0-License-Identifier: MIT
#
# This program is free software.
# For more information on the license, see COPYING.
# For more information on free software, see <https://www.gnu.org/philosophy/free-sw.en.html>.
project('modulemd', 'c',
version : '2.8.3',
default_options : [
'buildtype=debugoptimized',
'c_std=c11',
'warning_level=1',
'b_asneeded=true',
],
license : 'MIT',
meson_version : '>=0.47.0')
libmodulemd_version = meson.project_version()
cc = meson.get_compiler('c')
test_cflags = [
'-Wpointer-arith',
'-Werror=missing-declarations',
'-Wmissing-prototypes',
'-Wstrict-prototypes',
'-Wuninitialized',
['-Werror=format-security', '-Werror=format=2'], # Must be checked together
'-Werror=implicit',
'-Werror=init-self',
'-Werror=main',
'-Werror=missing-braces',
'-Werror=return-type',
'-Werror=array-bounds',
'-Werror=write-strings',
'-D_GNU_SOURCE',
'-DG_LOG_USE_STRUCTURED',
'-DG_LOG_DOMAIN="libmodulemd"',
]
foreach cflag: test_cflags
if cc.has_multi_arguments(cflag)
add_project_arguments(cflag, language : 'c')
endif
endforeach
pymod = import('python')
gnome = import('gnome')
pkg = import('pkgconfig')
gobject = dependency('gobject-2.0')
yaml = dependency('yaml-0.1')
with_rpmio = get_option('rpmio')
with_libmagic = get_option('libmagic')
rpm = dependency('rpm', required : with_rpmio)
magic = cc.find_library('magic', required : with_libmagic)
glib_prefix = dependency('glib-2.0').get_pkgconfig_variable('prefix')
sh = find_program('sh')
sed = find_program('sed')
test = find_program('test')
with_docs = get_option('with_docs')
if with_docs
gtkdoc = dependency('gtk-doc')
glib_docpath = join_paths(glib_prefix, 'share', 'gtk-doc', 'html')
ret = run_command ([test, '-e', join_paths(glib_docpath, 'glib/index.html')])
if ret.returncode() != 0
error('Missing documentation for GLib.')
endif
ret = run_command ([test, '-e', join_paths(glib_docpath, 'gobject/index.html')])
if ret.returncode() != 0
error('Missing documentation for GObject.')
endif
endif
python_name = get_option('python_name')
if python_name != ''
# If we've been instructed to use a specific python version
python3 = pymod.find_installation(python_name)
else
# Use the python installation that is running meson
python3 = pymod.find_installation()
endif
with_py2_overrides = get_option('with_py2_overrides')
if with_py2_overrides
python2 = pymod.find_installation('python2')
else
python2 = disabler()
endif
spec_tmpl = find_program('spec_tmpl.sh')
specfile_template = files('libmodulemd.spec.in')
mkdir = find_program('mkdir')
rpmsetup_target = custom_target(
'rpmsetup',
command: [
mkdir, '-p',
'rpmbuild/BUILD',
'rpmbuild/RPMS',
'rpmbuild/SPECS',
'rpmbuild/SRPMS'],
output: 'rpmbuild',
)
spec_target = custom_target(
'specfile',
capture: true,
build_by_default: true,
build_always_stale: true,
command: [sh, spec_tmpl,
meson.project_version(),
'@INPUT@'],
input: specfile_template,
output: 'libmodulemd.spec',
depends: rpmsetup_target,
)
rpm_cdata = configuration_data()
rpm_cdata.set('VERSION', meson.project_version())
rpm_cdata.set('BUILDFLAG', '-bb')
srpm_cdata = configuration_data()
srpm_cdata.set('VERSION', meson.project_version())
srpm_cdata.set('BUILDFLAG', '-bs')
configure_file(
input: 'make_rpms.sh.in',
output: 'make_srpm.sh',
configuration: srpm_cdata,
)
configure_file(
input: 'make_rpms.sh.in',
output: 'make_rpms.sh',
configuration: rpm_cdata,
)
subdir('modulemd')
subdir('bindings/python')