mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-06 13:17:44 +03:00
96b2fb93c5
Let's unify an beautify our remaining copyright statements, with a unicode ©. This means our copyright statements are now always formatted the same way. Yay.
48 lines
1.1 KiB
Meson
48 lines
1.1 KiB
Meson
# SPDX-License-Identifier: LGPL-2.1+
|
|
#
|
|
# Copyright © 2017 Zbigniew Jędrzejewski-Szmek
|
|
|
|
rules = files('''
|
|
60-block.rules
|
|
60-cdrom_id.rules
|
|
60-drm.rules
|
|
60-evdev.rules
|
|
60-input-id.rules
|
|
60-persistent-alsa.rules
|
|
60-persistent-input.rules
|
|
60-persistent-storage.rules
|
|
60-persistent-storage-tape.rules
|
|
60-persistent-v4l.rules
|
|
60-sensor.rules
|
|
60-serial.rules
|
|
70-joystick.rules
|
|
70-mouse.rules
|
|
70-touchpad.rules
|
|
75-net-description.rules
|
|
75-probe_mtd.rules
|
|
78-sound-card.rules
|
|
80-drivers.rules
|
|
80-net-setup-link.rules
|
|
'''.split())
|
|
|
|
install_data(rules,
|
|
install_dir : udevrulesdir)
|
|
|
|
all_rules = rules
|
|
|
|
rules_in = '''
|
|
50-udev-default.rules
|
|
64-btrfs.rules
|
|
99-systemd.rules
|
|
'''.split()
|
|
|
|
foreach file : rules_in
|
|
gen = configure_file(
|
|
input : file + '.in',
|
|
output : file,
|
|
configuration : substs)
|
|
install_data(gen,
|
|
install_dir : udevrulesdir)
|
|
all_rules += gen
|
|
endforeach
|