1# A Homebrew formula for Tinkey on Linux and macOS. 2# Usage: 3# brew tap google/tink https://github.com/google/tink 4# brew install tinkey 5 6class Tinkey < Formula 7 desc "A command line tool to generate and manipulate keysets for the Tink cryptography library" 8 homepage "https://github.com/google/tink/tree/master/tools/tinkey" 9 url "https://storage.googleapis.com/tinkey/tinkey-1.7.0.tar.gz" 10 sha256 "2c9e69e5bc7561ce37918cecd3eeabb4571e01c915c4397bce25796ff04d92a3" 11 12 def install 13 bin.install "tinkey" 14 bin.install "tinkey_deploy.jar" 15 end 16end 17