All checks were successful
Deploy Website / deploy-website (push) Successful in 40s
Publish kewt-git to AUR / publish-aur-git (push) Successful in 20s
Release Standalone Builder / build (release) Successful in 26s
Release Standalone Builder / publish-aur (release) Successful in 20s
Release Standalone Builder / publish-homebrew (release) Successful in 7s
19 lines
507 B
Plaintext
19 lines
507 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"
|
|
chmod 0755, bin/"kewt"
|
|
generate_completions_from_executable(bin/"kewt", "--dump-zsh-completions", shells: [:zsh])
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/kewt", "--version"
|
|
end
|
|
end
|