forked from polychromatic/polychromatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
51 lines (40 loc) · 1.69 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('polychromatic',
version : '0.8.3',
meson_version : '>=0.47.0')
fs = import('fs')
i18n = import('i18n')
python = import('python').find_installation()
py_install_dir = python.get_install_dir()
# Debian/Ubuntu's Python path should be 'dist-packages'
if build_machine.system() == 'linux'
if fs.is_dir('/usr/lib/python3/dist-packages')
py_install_dir = 'lib/python3/dist-packages'
endif
endif
# Compile Qt styles
# - Needs to run externally because SASS cannot process Qt's gradient syntax.
# so regular CSS needs to be concatenated.
sass = find_program('sassc')
run_command('scripts/build-styles.sh', check: true)
install_data('polychromatic-controller',
'polychromatic-tray-applet',
'polychromatic-cli',
'polychromatic-helper',
install_dir : get_option('bindir'))
install_man('man/polychromatic-controller.1',
'man/polychromatic-tray-applet.1',
'man/polychromatic-cli.1',
'man/polychromatic-helper.1')
install_subdir('data',
install_dir : join_paths(get_option('datadir'), 'polychromatic'),
strip_directory : true)
install_subdir('polychromatic',
install_dir : join_paths(py_install_dir, 'polychromatic'),
strip_directory : true)
install_subdir('sources/hicolor',
install_dir : join_paths(get_option('datadir'), 'icons'))
install_data('sources/launchers/polychromatic.desktop',
install_dir : join_paths(get_option('datadir'), 'applications'))
install_data('sources/launchers/polychromatic-autostart.desktop',
install_dir : join_paths(get_option('sysconfdir'), 'xdg/autostart'))
subdir('locale')