meson.build
ASCII text
1
foreach theme: themes
2
unity_dir = join_paths(theme['dir'], 'unity')
3
4
if theme['color'] != '-light'
5
unity_window_buttons_dir = 'window-buttons'
6
else
7
unity_window_buttons_dir = 'window-buttons-light'
8
endif
9
10
install_subdir(
11
unity_window_buttons_dir,
12
strip_directory: true,
13
install_dir: unity_dir,
14
)
15
16
install_subdir(
17
'dash-buttons',
18
strip_directory: true,
19
install_dir: unity_dir,
20
)
21
22
install_subdir(
23
'launcher',
24
strip_directory: true,
25
install_dir: unity_dir,
26
)
27
28
install_data(
29
'dash-widgets.json',
30
install_dir: unity_dir,
31
)
32
endforeach
33