hydra-cli 1.0 (new formula)

This utility is for interfacing with Hydra from the command line: https://github.com/sdegutis/hydra
This commit is contained in:
Steven Degutis 2014-07-21 16:14:23 -05:00 committed by Mike McQuaid
parent 6026bc7453
commit f843d5a450

16
Formula/hydra-cli.rb Normal file
View file

@ -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