From 96db3f4893fb5220234b41f8b4cbc30221905151 Mon Sep 17 00:00:00 2001 From: John Turner Date: Wed, 27 Aug 2025 02:40:36 -0400 Subject: replace makefile with meson --- blog/meson.build | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 blog/meson.build (limited to 'blog') diff --git a/blog/meson.build b/blog/meson.build new file mode 100644 index 0000000..fa74600 --- /dev/null +++ b/blog/meson.build @@ -0,0 +1,14 @@ +posts = files('access-control.org', 'gentoo-on-gcloud.org', 'index.org') + +foreach post : posts + html = fs.replace_suffix(post, '.html') + + custom_target( + output: fs.name(html), + input: post, + command: build_command, + install: true, + install_dir: '/var/www' / site / 'blog', + capture: true, + ) +endforeach -- cgit v1.2.3