website/build.mb
2024-10-22 01:16:54 +02:00

42 lines
962 B
Plaintext

sector config
section mariebuild
str build_type 'incremental'
list str targets 'static'
str default 'static'
end
end
sector targets
section static
list str c_rules 'sites'
end
end
sector c_rules
section sites
list str input 'index'
str input_format 'data/$(%element%).sad'
str output_format '$(%element%).html'
str exec '#!/usr/bin/env bash
set -e
mkdir -p \$(dirname $(%output%))
bin/fpc-sitegen -a el -i $(%input%) -o $(%output%)
COMMIT_SHORT=\$(git rev-parse --short HEAD)
BRANCH=\$(git rev-parse --abbrev-ref HEAD)
DATE=\$(date +%d.%m.%Y)
TIME=\$(date +%H:%M:%S)
sed -i "" -e ''s/\\\$\\\$DATE\\\$\\\$/''"\$DATE/g" $(%output%)
sed -i "" -e ''s/\\\$\\\$TIME\\\$\\\$/''"\$TIME/g" $(%output%)
sed -i "" -e ''s@\\\$\\\$BRANCH\\\$\\\$@''"\$BRANCH@g" $(%output%)
sed -i "" -e ''s@\\\$\\\$SOURCE\\\$\\\$@$(%input%)@g'' $(%output%)
sed -i "" -e ''s/\\\$\\\$COMMIT\\\$\\\$/''"\$COMMIT_SHORT/g" $(%output%)
'
end
end