Files
kewt/packaging/homebrew/kewt.rb.template
N0\A 55a82f75a9
All checks were successful
Lint / shellcheck (push) Successful in 18s
fix: link in homebrew
2026-03-20 09:33:45 +01:00

17 lines
385 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/vVERSION_PLACEHOLDER/kewt"
sha256 "SHA256SUM_PLACEHOLDER"
license "ISC"
version "VERSION_PLACEHOLDER"
def install
bin.install "kewt"
end
test do
system "#{bin}/kewt", "--version"
end
end