1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by custard โ do not edit by hand.
class Tt < Formula
desc "Charm-native front-end for the tock time tracker"
homepage "https://codex.humdrum.me/r/tt"
url "https://codex.humdrum.me/dl/tt-0.0.2.tar.gz"
sha256 "050c9b563dbec6a524755d683279ab2d6f0b506e6ac8e4d57b8d42005a5fbcca"
license "AGPL-3.0-or-later"
depends_on "go" => :build
def install
system "go", "build", *std_go_args(ldflags: "-s -w -X main.version=#{version}"), "./cmd/ticktock"
end
test do
assert_path_exists bin/"tt"
end
end
|