sportsball v0.1.0
8979b2ae86b24f594c6f36dbd488b5fffbb79232
custard <custard@git.kortum.world> · 2026-06-17 21:26
parent 58b4e60e
1 files changed
Formula/sportsball.rb +19 −0
@@ -0,0 +1,19 @@
+# Generated by custard brew-release.sh — do not edit by hand.
+class Sportsball < Formula
+ desc "sportsball"
+ homepage "https://git.kortum.world/r/sportsball"
+ url "https://git.kortum.world/dl/sportsball-0.1.0.tar.gz"
+ sha256 "957a7f88a4caaf04f69424cd3bb2c02abeb358bee2429328e406f6fc5b21a99a"
+ version "0.1.0"
+ 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}"), "."
+ end
+
+ test do
+ assert_path_exists bin/"sportsball"
+ end
+end