Makko, the people-oriented static site generator made for blogging.

CD: Add FreeBSD build

Since older versions of zig are not available on all systems it can be
useful to have prebuilt binaries of a variety of systems

+8
+8
.forgejo/build.fish
··· 24 24 _upx zig-out/bin/makko -o build/makko-x86_64-linux 25 25 end 26 26 27 + function build-x86_64-freebsd 28 + echo "building x86_64 targeting athlon64, FreeBSD" 29 + zig_build -Dtarget=x86_64-freebsd -Dcpu=athlon64 30 + _upx zig-out/bin/makko -o build/makko-x86_64-freebsd 31 + end 32 + 27 33 function build-aarch64-linux 28 34 echo "building aarch64, musl-linux-static" 29 35 zig_build -Dtarget=aarch64-linux-musl ··· 49 55 end 50 56 51 57 switch $argv 58 + case build-x86_64-freebsd 59 + build-x86_64-linux 52 60 case build-x86_64-linux 53 61 build-x86_64-linux 54 62 case build-aarch64-linux