denominator 1.1.2
Closes Homebrew/homebrew#19165. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
574c25f7f6
commit
d044093419
1 changed files with 19 additions and 0 deletions
19
Formula/denominator.rb
Normal file
19
Formula/denominator.rb
Normal file
|
@ -0,0 +1,19 @@
|
|||
require 'formula'
|
||||
|
||||
class Denominator < Formula
|
||||
# nounzip as this is a single executable file; it is a shell script wrapper around
|
||||
# a java jar file
|
||||
homepage 'https://github.com/Netflix/denominator/tree/master/denominator-cli'
|
||||
url 'http://dl.bintray.com/content/netflixoss/denominator/denominator-cli/release/1.1.2/denominator?direct',
|
||||
:using => :nounzip
|
||||
version '1.1.2'
|
||||
sha1 '8fd15d9579c7e1e9b79b3e1987a5dfb61499fb24'
|
||||
|
||||
def install
|
||||
bin.install "denominator?direct" => "denominator"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/denominator", "help"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue