jackett 0.22.1382
[Homebrew/homebrew-core.git] / Formula / c / countdown.rb
blobd3b275c77f4b761478471162e350de966ab401f5
1 class Countdown < Formula
2   desc "Terminal countdown timer"
3   homepage "https://github.com/antonmedv/countdown"
4   url "https://github.com/antonmedv/countdown/archive/refs/tags/v1.5.0.tar.gz"
5   sha256 "ac83ec593674a367913413796e8708680cbb6504c8f68ce17152d800a92ccf3b"
6   license "MIT"
8   bottle do
9     sha256 cellar: :any_skip_relocation, arm64_sequoia:  "3ebc66b0ed891535e467c0061b52f350fae80fd2a3b77de1b1eb4eeb16580e39"
10     sha256 cellar: :any_skip_relocation, arm64_sonoma:   "38a5941ae73ed1aceb80861659045b316492a0ca982022a747912f8585a67895"
11     sha256 cellar: :any_skip_relocation, arm64_ventura:  "38a5941ae73ed1aceb80861659045b316492a0ca982022a747912f8585a67895"
12     sha256 cellar: :any_skip_relocation, arm64_monterey: "38a5941ae73ed1aceb80861659045b316492a0ca982022a747912f8585a67895"
13     sha256 cellar: :any_skip_relocation, arm64_big_sur:  "38a5941ae73ed1aceb80861659045b316492a0ca982022a747912f8585a67895"
14     sha256 cellar: :any_skip_relocation, sonoma:         "ddf45211af332196f188371a462c0af25b115d64e08d568c20370e5be9992b2f"
15     sha256 cellar: :any_skip_relocation, ventura:        "ddf45211af332196f188371a462c0af25b115d64e08d568c20370e5be9992b2f"
16     sha256 cellar: :any_skip_relocation, monterey:       "ddf45211af332196f188371a462c0af25b115d64e08d568c20370e5be9992b2f"
17     sha256 cellar: :any_skip_relocation, big_sur:        "ddf45211af332196f188371a462c0af25b115d64e08d568c20370e5be9992b2f"
18     sha256 cellar: :any_skip_relocation, x86_64_linux:   "aa3d5f2c9b3e7e4661b7aa92583175cd869bcfc37750b4a66dcb3e641be91554"
19   end
21   depends_on "go" => :build
23   def install
24     system "go", "build", *std_go_args(ldflags: "-s -w")
25   end
27   test do
28     pipe_output bin/"countdown", "0m0s"
29   end
30 end