voirs-cli 0.1.0-beta.1

Command-line interface for VoiRS speech synthesis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class {{NAME}} < Formula
  desc "{{DESCRIPTION}}"
  homepage "{{HOMEPAGE}}"
  url "{{REPOSITORY}}/releases/download/v{{VERSION}}/voirs-macos.tar.gz"
  sha256 "{{SHA256}}"
  license "{{LICENSE}}"
  version "{{VERSION}}"

  depends_on "ffmpeg" => :optional

  def install
    bin.install "voirs"
  end

  test do
    system "#{bin}/voirs", "--version"
  end
end