forked from rpminspect/rpminspect-data-fedora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
41 lines (38 loc) · 965 Bytes
/
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
project('rpminspect-data-fedora',
version : '0.8',
license : 'GPLv3+',
meson_version : '>=0.47.0')
# Install data files
install_subdir(
'abi-checking-whitelist',
install_dir : get_option('datadir') + '/rpminspect'
)
install_subdir(
'capabilities',
install_dir : get_option('datadir') + '/rpminspect'
)
install_subdir(
'licenses',
install_dir : get_option('datadir') + '/rpminspect'
)
install_subdir(
'political-whitelist',
install_dir : get_option('datadir') + '/rpminspect'
)
install_subdir(
'stat-whitelist',
install_dir : get_option('datadir') + '/rpminspect'
)
install_subdir(
'version-whitelist',
install_dir : get_option('datadir') + '/rpminspect'
)
# Install the configuration file
install_data(
sources : 'rpminspect.conf',
install_dir : get_option('sysconfdir') + '/rpminspect'
)
install_subdir(
'profiles',
install_dir : get_option('sysconfdir') + '/rpminspect'
)