Files
kewt/packaging/homebrew/kewt.rb.template
N0\A 0f66ebf52a
All checks were successful
Lint / shellcheck (push) Successful in 18s
dist: brew
2026-03-20 09:23:43 +01:00

17 lines
384 B
Plaintext

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