-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.build
More file actions
41 lines (34 loc) · 761 Bytes
/
Copy pathmeson.build
File metadata and controls
41 lines (34 loc) · 761 Bytes
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
project('refind-theme-elementary', 'c',
version: '0.1.0'
)
comp = find_program('rsvg-convert')
icons = [
'back-selected-big',
'back-selected-small',
'func_about',
'func_exit',
'func_firmware',
'func_reset',
'func_shutdown',
'vol_external',
'vol_internal',
'vol_net',
'vol_optical'
]
foreach icon : icons
mytarget = custom_target(icon,
output : icon + '.png',
input : 'icons/' + icon + '.svg',
command : [comp, '@INPUT@', '-o', '@OUTPUT@'],
install : true,
install_dir : '/boot/efi/EFI/refind/elementary'
)
endforeach
install_data(
'refind.conf',
install_dir: '/boot/efi/EFI/refind'
)
install_subdir(
'elementary',
install_dir: '/boot/efi/EFI/refind'
)