mirror of
https://git.proxmox.com/git/fwupd
synced 2026-03-28 19:55:48 +00:00
29 lines
656 B
Meson
29 lines
656 B
Meson
if get_option('enable-gpg')
|
|
install_data([
|
|
'GPG-KEY-Hughski-Limited',
|
|
'GPG-KEY-Linux-Vendor-Firmware-Service',
|
|
],
|
|
install_dir : join_paths(get_option('sysconfdir'), 'pki', 'fwupd')
|
|
)
|
|
|
|
install_data([
|
|
'GPG-KEY-Linux-Vendor-Firmware-Service',
|
|
],
|
|
install_dir : join_paths(get_option('sysconfdir'), 'pki', 'fwupd-metadata')
|
|
)
|
|
endif
|
|
|
|
if get_option('enable-pkcs7')
|
|
install_data([
|
|
'LVFS-CA.pem',
|
|
],
|
|
install_dir : join_paths(get_option('sysconfdir'), 'pki', 'fwupd')
|
|
)
|
|
install_data([
|
|
'LVFS-CA.pem',
|
|
],
|
|
install_dir : join_paths(get_option('sysconfdir'), 'pki', 'fwupd-metadata')
|
|
)
|
|
endif
|
|
|