diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/hydra-cli.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/hydra-cli.rb b/Library/Formula/hydra-cli.rb new file mode 100644 index 000000000..eba18be45 --- /dev/null +++ b/Library/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 |
