weighttp 0.3

Closes Homebrew/homebrew#16209.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Hiroaki Nakamura 2012-11-24 05:31:12 +09:00 committed by Adam Vandenberg
parent 6f17c43b16
commit 1a06ede7f9
1 changed files with 21 additions and 0 deletions

21
Formula/weighttp.rb Normal file
View File

@ -0,0 +1,21 @@
require 'formula'
class Weighttp < Formula
homepage 'http://redmine.lighttpd.net/projects/weighttp/wiki'
url 'https://github.com/lighttpd/weighttp/archive/weighttp-0.3.tar.gz'
sha1 '170b359abd989fe1db26c71e89dc07c3a7caaf05'
head 'git://git.lighttpd.net/weighttp'
depends_on 'libev'
def install
system "./waf", "configure"
system "./waf", "build"
bin.install "build/default/weighttp"
end
def test
system "weighttp -n 1 http://redmine.lighttpd.net/projects/weighttp/wiki"
end
end