Some checks failed
CI / build (push) Failing after 12s
GitOrigin-RevId: 6370f6ea785709295b6abcf9c60717cacf3ac432
17 lines
No EOL
368 B
Smarty
17 lines
No EOL
368 B
Smarty
class TtsClient < Formula
|
|
desc "Internal TTS Client for CSBX"
|
|
homepage "https://forgejo.csbx.dev/acmcarther/yesod"
|
|
version "{VERSION}"
|
|
|
|
url "{URL}"
|
|
sha256 "{SHA256}"
|
|
|
|
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 |