diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-08-25 12:58:26 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-08-25 12:58:26 +0200 |
| commit | b7ae55960b81b7ed95a5f32afe4c91610a87e9e5 (patch) | |
| tree | 1a96dbb3b777fc77e3de219316dcf30598aba464 | |
| parent | fc9569a9904453d84da4889d6fd6c2662242a37e (diff) | |
Add tomato-sauce
| -rw-r--r-- | Formula/tomato-sauce-3.0.0.rb | 22 | ||||
| -rw-r--r-- | Formula/tomato-sauce.rb | 22 |
2 files changed, 44 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 diff --git a/Formula/tomato-sauce.rb b/Formula/tomato-sauce.rb new file mode 100644 index 0000000..a647127 --- /dev/null +++ b/Formula/tomato-sauce.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 |