18 lines
554 B
Ruby
18 lines
554 B
Ruby
class TtsClient < Formula
|
|
desc "Internal TTS Client for CSBX"
|
|
homepage "https://forgejo.csbx.dev/acmcarther/yesod"
|
|
version "0.0.1"
|
|
|
|
# URL to your Forgejo Package Registry
|
|
url "https://forgejo.csbx.dev/api/packages/acmcarther/generic/tts-client/0.0.1/tts-client-darwin-arm64"
|
|
sha256 "13d2109abd08b49f553595e9ea9df541dd37e9a8a316baa32c9d6c563743813f"
|
|
|
|
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
|