src/meson.build: remove zlevis-fetch

This commit is contained in:
Luc Bijl 2025-02-19 21:37:04 +01:00
parent 8c62ea0b88
commit 740418826c

View file

@ -2,16 +2,13 @@
main = find_program('zlevis') main = find_program('zlevis')
encrypt = find_program('zlevis-encrypt') encrypt = find_program('zlevis-encrypt')
decrypt = find_program('zlevis-decrypt') decrypt = find_program('zlevis-decrypt')
fetch = find_program('zlevis-fetch')
# Test the scripts # Test the scripts
test('zlevis', main, args: '--summary') test('zlevis', main, args: '--summary')
test('zlevis-encrypt', encrypt, args: '--summary') test('zlevis-encrypt', encrypt, args: '--summary')
test('zlevis-decrypt', decrypt, args: '--summary') test('zlevis-decrypt', decrypt, args: '--summary')
test('zlevis-fetch', fetch, args: '--summary')
# Add paths of scripts to bins # Add paths of scripts to bins
bins += join_paths(meson.current_source_dir(), 'zlevis') bins += join_paths(meson.current_source_dir(), 'zlevis')
bins += join_paths(meson.current_source_dir(), 'zlevis-encrypt') bins += join_paths(meson.current_source_dir(), 'zlevis-encrypt')
bins += join_paths(meson.current_source_dir(), 'zlevis-decrypt') bins += join_paths(meson.current_source_dir(), 'zlevis-decrypt')
bins += join_paths(meson.current_source_dir(), 'zlevis-fetch')