From f843d5a450513c7cce53ac3e91e3d9e6d6ed57e1 Mon Sep 17 00:00:00 2001 From: Steven Degutis Date: Mon, 21 Jul 2014 16:14:23 -0500 Subject: [PATCH] hydra-cli 1.0 (new formula) This utility is for interfacing with Hydra from the command line: https://github.com/sdegutis/hydra --- Formula/hydra-cli.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Formula/hydra-cli.rb diff --git a/Formula/hydra-cli.rb b/Formula/hydra-cli.rb new file mode 100644 index 0000000000..eba18be45f --- /dev/null +++ b/Formula/hydra-cli.rb @@ -0,0 +1,16 @@ +require "formula" + +class HydraCli < Formula + homepage 'https://github.com/sdegutis/hydra-cli' + url 'https://github.com/sdegutis/hydra-cli/archive/1.0.tar.gz' + sha1 '15906ca4255839844635f26eab83843f0426b5f9' + head 'https://github.com/sdegutis/hydra-cli.git' + + def install + system "make", "install", "PREFIX=#{prefix}" + end + + test do + system "#{bin}/hydra", "-h" + end +end