about summary refs log tree commit diff
path: root/pkgs/tools/misc/colord/fix-build-paths.patch
blob: 7eb66a0b34be75430063680ac49bfe0003288b46 (plain) (blame)
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
--- a/contrib/session-helper/meson.build
+++ b/contrib/session-helper/meson.build
@@ -21,7 +21,7 @@
     output : 'colord-session.service',
     configuration : con2,
     install: true,
-    install_dir: systemd.get_pkgconfig_variable('systemduserunitdir'),
+    install_dir: join_paths(get_option('prefix'), 'etc', 'systemd', 'user'),
   )
 endif
 
--- a/data/meson.build
+++ b/data/meson.build
@@ -8,13 +8,13 @@
 
 if get_option('enable-systemd')
   install_data('colord.conf',
-    install_dir: systemd.get_pkgconfig_variable('tmpfilesdir')
+    install_dir: join_paths(get_option('prefix'), 'lib', 'tmpfiles.d')
   )
 endif
 
 if get_option('enable-bash-completion')
   install_data('colormgr',
-    install_dir: bash_completion.get_pkgconfig_variable('completionsdir')
+    install_dir: join_paths(get_option('prefix'), 'etc', 'bash_completion.d')
   )
 endif
 
@@ -31,7 +31,7 @@
     output : 'colord.service',
     configuration : con2,
     install: true,
-    install_dir: systemd.get_pkgconfig_variable('systemdsystemunitdir'),
+    install_dir: join_paths(get_option('prefix'), 'etc', 'systemd', 'system'),
   )
 endif
 
--- a/meson.build
+++ b/meson.build
@@ -258,6 +258,3 @@
 subdir('policy')
 subdir('rules')
 subdir('src')
-
-meson.add_install_script('meson_post_install.sh',
-                         localstatedir, get_option('with-daemon-user'))
--- a/rules/meson.build
+++ b/rules/meson.build
@@ -9,5 +9,5 @@
     sensor_rules_in,
     '95-cd-devices.rules',
   ],
-  install_dir : join_paths(udev.get_pkgconfig_variable('udevdir'), 'rules.d')
+  install_dir : join_paths(get_option('prefix'), 'lib', 'udev', 'rules.d')
 )