mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-21 09:27:55 +00:00

Automake and autoconf are impossible to fully understand and Meson now provides everything we need for a much smaller, faster, and more understandable build. See http://mesonbuild.com/ for more information.
12 lines
356 B
Meson
12 lines
356 B
Meson
install_data('org.freedesktop.fwupd.rules',
|
|
install_dir : 'share/polkit-1/rules.d')
|
|
|
|
i18n.merge_file(
|
|
input: 'org.freedesktop.fwupd.policy.in',
|
|
output: 'org.freedesktop.fwupd.policy',
|
|
type: 'xml',
|
|
po_dir: join_paths(meson.source_root(), 'po'),
|
|
install: true,
|
|
install_dir: join_paths(get_option('datadir'), 'polkit-1', 'actions')
|
|
)
|