1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Generated by custard — do not edit by hand.
class Dots < Formula
desc "Dots CLI — reflex-speed logging for dots.humdrum.one"
homepage "https://codex.humdrum.me/r/dots"
url "https://codex.humdrum.me/dl/dots-1.0.0.tar.gz"
sha256 "da30c607d4bf9a01c08448ab072ab21006e7a3ef4d9f467c575b304e3dd00e6c"
depends_on "go" => :build
def install
system "go", "build", *std_go_args(ldflags: "-s -w -X main.version=#{version}"), "./cmd/dots"
end
test do
assert_path_exists bin/"dots"
end
end
|