aboutsummaryrefslogtreecommitdiff
path: root/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Formula')
-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