blob: fa74600447b34e34a8b521e07be296c5b7387283 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|