2012-03-21 20:05:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Wrk < Formula
|
|
|
|
homepage 'https://github.com/wg/wrk'
|
2014-02-10 14:10:15 +00:00
|
|
|
url 'https://github.com/wg/wrk/archive/3.1.0.tar.gz'
|
|
|
|
sha1 '3ddc1e591a846b92899a534abf4bc49d2c6cd98e'
|
2013-11-14 12:16:43 +00:00
|
|
|
head 'https://github.com/wg/wrk.git'
|
2012-03-21 20:05:45 +00:00
|
|
|
|
2014-02-10 14:10:15 +00:00
|
|
|
depends_on 'openssl'
|
|
|
|
|
2013-11-12 15:13:00 +00:00
|
|
|
conflicts_with 'wrk-trello', :because => 'both install `wrk` binaries'
|
|
|
|
|
2012-03-21 20:05:45 +00:00
|
|
|
def install
|
2013-11-14 12:16:43 +00:00
|
|
|
ENV.j1
|
2012-03-21 20:05:45 +00:00
|
|
|
system "make"
|
|
|
|
bin.install "wrk"
|
|
|
|
end
|
|
|
|
|
2013-03-25 18:35:22 +00:00
|
|
|
test do
|
2014-02-10 14:10:15 +00:00
|
|
|
system *%W{#{bin}/wrk -c 1 -t 1 https://github.com/}
|
2012-03-21 20:05:45 +00:00
|
|
|
end
|
|
|
|
end
|