mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-28 03:45:10 -04:00
This sacrifices compatibility with Debian 10 to let us simplify how tests are set up. Signed-off-by: Simon McVittie <smcv@collabora.com>
18 lines
362 B
Meson
18 lines
362 B
Meson
# Copyright 2022 Collabora Ltd.
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
foreach file : [
|
|
'README',
|
|
'pubring.gpg',
|
|
'secring.gpg',
|
|
]
|
|
configure_file(
|
|
input : file,
|
|
output : file,
|
|
copy : true,
|
|
install : get_option('installed_tests'),
|
|
install_dir : installed_testdir / 'test-keyring2',
|
|
install_mode : 'rw-r--r--',
|
|
)
|
|
endforeach
|