diff options
Diffstat (limited to 'Formula/tomato-sauce-3.0.0.rb')
| -rw-r--r-- | Formula/tomato-sauce-3.0.0.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Formula/tomato-sauce-3.0.0.rb b/Formula/tomato-sauce-3.0.0.rb new file mode 100644 index 0000000..a647127 --- /dev/null +++ b/Formula/tomato-sauce-3.0.0.rb @@ -0,0 +1,22 @@ +class TomatoSauce < Formula + desc "A telnet server that prints pretty patterns" + homepage "https://r.bdr.sh/tomato_sauce.html" + if Hardware::CPU.arm? + url "https://build.r.bdr.sh/tomato-sauce/tomato-sauce-aarch64-apple-darwin-3.0.0.tar.gz" + sha256 "29ed8d5da0f6e31876aef96a232e75b8a403f1f1dd88134c4ca4219b9c3c1d87" + else + url "https://build.r.bdr.sh/tomato-sauce/tomato-sauce-x86_64-apple-darwin-3.0.0.tar.gz" + sha256 "031c92d5bd467d1fb74eab5fb857ad03dc9476c28d809db29eeaac241923ae57" + end + license "AGPL-3.0-or-later" + head "https://git.sr.ht/~rbdr/tomato-sauce", branch: "main" + version "3.0.0" + + def install + bin.install "tomato-sauce" + end + + test do + system "#{bin}/tomato-sauce", "--help" + end +end |