aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflu0r1ne <flu0r1ne@flu0r1ne.net>2021-08-23 03:08:18 -0500
committerflu0r1ne <flu0r1ne@flu0r1ne.net>2021-08-23 03:08:18 -0500
commit7e854cc851fa3df5285175eb0bd026e2b71bdcfa (patch)
tree13aba7965754c5871a3147b135d00087d12be23d
parent2382cdaa83acba86a448446cd42dc833d4f85b4a (diff)
downloadhomebrew-planr-7e854cc851fa3df5285175eb0bd026e2b71bdcfa.tar.xz
homebrew-planr-7e854cc851fa3df5285175eb0bd026e2b71bdcfa.zip
Add git-update-agent
-rw-r--r--Formula/git-update-agent.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Formula/git-update-agent.rb b/Formula/git-update-agent.rb
new file mode 100644
index 0000000..fb87536
--- /dev/null
+++ b/Formula/git-update-agent.rb
@@ -0,0 +1,19 @@
+class Planr < Formula
+ desc "A simple update overlay for git"
+ homepage "https://www.git.flu0r1ne.net/git-update-agent/about/"
+ url "https://www.git.flu0r1ne.net/git-update-agent/snapshot/git-update-agent-0.0.1.tar.xz"
+ version "0.0.1"
+ sha256 "0fefa18c3fa4485a42be05918f179d933bf528531241aa87aaca1f550d48650f"
+ license "GPL-2.0-only"
+
+ depends_on "git"
+
+ def install
+ bin.install "./git-update-agent"
+ end
+
+ test do
+ # Do something more substantial once test configuration is more modular
+ assert_equal "0.0.1", shell_output("#{bin}/git-update-agent version").strip
+ end
+end