yesod-homebrew-tools/tts-client.rb

18 lines
569 B
Ruby
Raw Normal View History

class TtsClient < Formula
desc "Internal TTS Client for CSBX"
homepage "https://forgejo.csbx.dev/acmcarther/yesod"
version "0.0.2-b5422b0"
# URL to your Forgejo Package Registry
url "https://forgejo.csbx.dev/api/packages/acmcarther/generic/tts-client/0.0.2-b5422b0/tts-client-darwin-arm64"
sha256 "993f75474bb44819c95561611e2fd085fcc193386881bf102c255eb0af874a4b"
def install
# Rename to just 'tts-client' upon installation
bin.install "tts-client-darwin-arm64" => "tts-client"
end
test do
system "#{bin}/tts-client", "--help"
end
end