From fcc8acbaa0f6a07974ceb24be3e0d112743a5b71 Mon Sep 17 00:00:00 2001 From: Evan Burkey Date: Fri, 13 Jun 2025 09:52:23 -0700 Subject: [PATCH] homebrew --- Formula/epochcli.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Formula/epochcli.rb diff --git a/Formula/epochcli.rb b/Formula/epochcli.rb new file mode 100644 index 0000000..9b9c63a --- /dev/null +++ b/Formula/epochcli.rb @@ -0,0 +1,20 @@ +class Epochcli < Formula + desc "Updater and Launcher for Epoch" + homepage "https://git.burkey.co/eburk/epochcli/src/branch/master" + url "https://git.burkey.co/eburk/epochcli/archive/0.0.2.tar.gz" + sha256 "192ae687256a33468e97c7116177b65fb42b42a66138f61f24b93b76f4048f1c" + license "ISC" + head "https://git.burkey.co/eburk/epochcli.git", branch: "master" + + livecheck do + url :stable + end + + depends_on "go" => :build + + def install + cd "epochcli" do + system "go", "build" + end + end +end