-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmeson.build
51 lines (40 loc) · 1.09 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
project(
'elementary-default-settings',
version: '8.0.2',
meson_version: '>= 0.58.0'
)
gnome = import('gnome')
prefix = get_option('prefix')
datadir = prefix / get_option('datadir')
sysconfdir = get_option('sysconfdir')
schemadir = datadir / 'glib-2.0' / 'schemas'
gnome.post_install(glib_compile_schemas: true)
symlink = meson.current_source_dir () / 'meson' / 'create-symlink.sh'
# 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'
)
# Default gsettings overrides
subdir('overrides')
# AccountsService extension for Greeter.
subdir('accountsservice')
# System skeleton
subdir('skel')
# GTK settings
subdir('gtk')