From 5e84d7b76ce1cccdaf0900d62a94d0d1d88cdd62 Mon Sep 17 00:00:00 2001 From: Jannis Hoffmann Date: Sun, 14 Jul 2024 22:30:34 +0200 Subject: convert to the meson build system This removes a lot of files. Remove all conf-* files. The settings move to meson.options. Add editor config. Remove the auto_*.h files. They move to config.h.in. --- script/meson.build | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 script/meson.build (limited to 'script/meson.build') diff --git a/script/meson.build b/script/meson.build new file mode 100644 index 0000000..e4d647b --- /dev/null +++ b/script/meson.build @@ -0,0 +1,15 @@ +scripts = ['https@.sh', 'sslcat.sh', 'sslconnect.sh'] + +renamed = [] + +foreach s : scripts + renamed += s.substring(0, -3) +endforeach + +install_data( + sources : scripts, + rename : renamed, + install_dir : get_option('bindir'), + install_tag : 'bin', + install_mode : 'rwxr-xr-x', +) -- cgit v1.2.3