blob: ee403d405aed621f670a8efabf419cee420ed285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Wrk < Formula
homepage 'https://github.com/wg/wrk'
url 'https://github.com/wg/wrk/archive/2.2.2.tar.gz'
sha1 'e13ebcea4d88137c788363daafae546b0ccdbf19'
def install
system "make"
bin.install "wrk"
end
test do
system *%W{#{bin}/wrk -c 1 -r 1 -t 1 http://www.github.com/}
end
end
|