dist: brew
All checks were successful
Lint / shellcheck (push) Successful in 18s

This commit is contained in:
2026-03-20 09:23:43 +01:00
parent 55a515ccd5
commit 0f66ebf52a
4 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
class Kewt < Formula
desc "Minimalist static site generator inspired by werc"
homepage "https://kewt.krzak.org"
url "https://github.com/n0va-bot/kewt/releases/download/VERSION_PLACEHOLDER/kewt"
sha256 "SHA256SUM_PLACEHOLDER"
license "ISC"
version "VERSION_PLACEHOLDER"
def install
bin.install "kewt"
end
test do
system "#{bin}/kewt", "--version"
end
end