forked from Vanilla-OS/first-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
51 lines (43 loc) · 1.24 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
pkgdatadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
moduledir = join_paths(pkgdatadir, 'vanilla_first_setup')
gnome = import('gnome')
gnome.compile_resources('vanilla-first-setup',
'vanilla-first-setup.gresource.xml',
gresource_bundle: true,
install: true,
install_dir: pkgdatadir,
)
python = import('python')
conf = configuration_data()
conf.set('PYTHON', python.find_installation('python3').path())
conf.set('VERSION', meson.project_version())
conf.set('localedir', join_paths(get_option('prefix'), get_option('localedir')))
conf.set('pkgdatadir', pkgdatadir)
configure_file(
input: 'vanilla-first-setup.in',
output: 'vanilla-first-setup',
install_mode: 'rwxr-xr-x',
configuration: conf,
install: true,
install_dir: get_option('bindir'),
install_mode: 'rwxr-xr-x'
)
configure_file(
input: 'vanilla-first-setup-prepare-files.in',
output: 'vanilla-first-setup-prepare-files',
configuration: conf,
install: true,
install_dir: get_option('bindir')
)
subdir('utils')
subdir('defaults')
subdir('layouts')
subdir('views')
subdir('core')
vanilla_first_setup_sources = [
'__init__.py',
'main.py',
'window.py',
'dialog.py',
]
install_data(vanilla_first_setup_sources, install_dir: moduledir)