-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathmeson.build
More file actions
65 lines (51 loc) · 1.3 KB
/
Copy pathmeson.build
File metadata and controls
65 lines (51 loc) · 1.3 KB
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
project(
'elementary-default-settings',
version: '8.1.1',
meson_version: '>= 1.3.0'
)
fs = import('fs')
gnome = import('gnome')
prefix = get_option('prefix')
datadir = prefix / get_option('datadir')
sysconfdir = get_option('sysconfdir')
sharedstatedir = get_option('sharedstatedir')
schemadir = datadir / 'glib-2.0' / 'schemas'
gnome.post_install(glib_compile_schemas: true)
# Sudo password feedback in terminals
install_data(
'sudoers.d/pwfeedback',
install_dir: sysconfdir / 'sudoers.d'
)
# CUPS Printing testpage
install_data(
'cups/default-testpage.pdf',
install_dir: datadir / 'cups' / 'data'
)
# So SessionInstaller can have an Icon
install_data(
'sessioninstaller/sessioninstaller.desktop',
install_dir: datadir / 'applications'
)
# xdg-desktop-portal configuration
install_data(
'xdg-desktop-portal/pantheon-portals.conf',
install_dir: datadir / 'xdg-desktop-portal'
)
# AppArmor profiles for bwrap etc
if get_option('apparmor-profiles')
subdir('apparmor')
endif
# Default gsettings overrides
subdir('overrides')
# AccountsService extension for Greeter.
subdir('accountsservice')
# System skeleton
subdir('skel')
# Geolocation settings
subdir('geoclue')
# GTK settings
subdir('gtk')
# Network settings
subdir('network')
# Flatpak preinstall files
subdir('flatpak')