dots v1.0.0
2cbf980beea4052af14c6babe05274361d89b313
custard <custard@codex.humdrum.me> · 2026-07-30 03:05
parent 96ecfe8f
1 files changed
Formula/dots.rb +17 −0
@@ -0,0 +1,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