mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-12 11:18:38 +00:00
31 lines
692 B
Meson
31 lines
692 B
Meson
if get_option('lvfs')
|
|
install_data([
|
|
'lvfs.conf',
|
|
'lvfs-testing.conf',
|
|
],
|
|
install_dir : join_paths(sysconfdir, 'fwupd', 'remotes.d')
|
|
)
|
|
endif
|
|
|
|
install_data('README.md',
|
|
install_dir : join_paths(datadir, 'fwupd', 'remotes.d', 'vendor', 'firmware')
|
|
)
|
|
|
|
# replace @datadir@
|
|
con2 = configuration_data()
|
|
con2.set('datadir', datadir)
|
|
configure_file(
|
|
input : 'fwupd.conf',
|
|
output : 'fwupd.conf',
|
|
configuration : con2,
|
|
install: true,
|
|
install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d'),
|
|
)
|
|
configure_file(
|
|
input : 'vendor.conf',
|
|
output : 'vendor.conf',
|
|
configuration : con2,
|
|
install: true,
|
|
install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d'),
|
|
)
|