You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
366 B
Meson
16 lines
366 B
Meson
2 years ago
|
pkgdatadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
|
||
2 years ago
|
utilsdir = join_paths(pkgdatadir, 'vanilla_first_setup/utils')
|
||
2 years ago
|
|
||
|
sources = [
|
||
|
'__init__.py',
|
||
|
'checks.py',
|
||
|
'apt.py',
|
||
|
'flatpak.py',
|
||
|
'snap.py',
|
||
|
'configurator.py',
|
||
2 years ago
|
'run_async.py',
|
||
2 years ago
|
'processor.py',
|
||
2 years ago
|
'welcome_langs.py',
|
||
2 years ago
|
]
|
||
|
|
||
|
install_data(sources, install_dir: utilsdir)
|