typechar 1.0.0

Type any Unicode string on macOS, regardless of keyboard layout
# Template for the Homebrew tap formula. The release workflow substitutes
# {{VERSION}} and {{SHA256}} and pushes the result to blaueeiner/homebrew-tap.
class Typechar < Formula
  desc "Type any Unicode string on macOS, regardless of keyboard layout"
  homepage "https://github.com/blaueeiner/typechar"
  url "https://github.com/blaueeiner/typechar/releases/download/v{{VERSION}}/typechar-{{VERSION}}-macos-universal.tar.gz"
  sha256 "{{SHA256}}"
  version "{{VERSION}}"
  license "MIT"

  depends_on :macos

  def install
    bin.install "typechar"
  end

  test do
    assert_match "typechar #{version}", shell_output("#{bin}/typechar --version")
  end
end