]> git.ipfire.org Git - thirdparty/systemd.git/blob - hwdb/meson.build
d333ee68a3feb1f71404ff1a9fc6fca635e1acb9
[thirdparty/systemd.git] / hwdb / meson.build
1 # SPDX-License-Identifier: LGPL-2.1+
2 #
3 # Copyright 2017 Zbigniew Jędrzejewski-Szmek
4 #
5 # systemd is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as published by
7 # the Free Software Foundation; either version 2.1 of the License, or
8 # (at your option) any later version.
9 #
10 # systemd is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
17
18 hwdb_files = files('''
19 20-pci-vendor-model.hwdb
20 20-pci-classes.hwdb
21 20-usb-vendor-model.hwdb
22 20-usb-classes.hwdb
23 20-sdio-vendor-model.hwdb
24 20-sdio-classes.hwdb
25 20-bluetooth-vendor-product.hwdb
26 20-acpi-vendor.hwdb
27 20-OUI.hwdb
28 20-net-ifname.hwdb
29 60-evdev.hwdb
30 60-keyboard.hwdb
31 60-sensor.hwdb
32 70-joystick.hwdb
33 70-mouse.hwdb
34 70-pointingstick.hwdb
35 70-touchpad.hwdb
36 '''.split())
37
38 if conf.get('ENABLE_HWDB') == 1
39 install_data(hwdb_files,
40 install_dir : udevhwdbdir)
41
42 meson.add_install_script('sh', '-c',
43 mkdir_p.format(join_paths(sysconfdir, 'udev/hwdb.d')))
44
45 meson.add_install_script('sh', '-c',
46 'test -n "$DESTDIR" || @0@/systemd-hwdb update'
47 .format(rootbindir))
48 endif
49
50 ############################################################
51
52 parse_hwdb_py = find_program('parse_hwdb.py')
53 test('parse-hwdb',
54 parse_hwdb_py,
55 timeout : 90)
56
57 ############################################################
58
59 run_target(
60 'hwdb-update',
61 command : [hwdb_update_sh, meson.current_source_dir()])