Skip to content

Instantly share code, notes, and snippets.

@Qard
Created September 15, 2012 06:47
Show Gist options
  • Save Qard/3726664 to your computer and use it in GitHub Desktop.
Save Qard/3726664 to your computer and use it in GitHub Desktop.
Formula to fix ab on OSX Lion
require 'formula'
class Ab < Formula
homepage 'http://httpd.apache.org/docs/trunk/programs/ab.html'
url 'http://www.apache.org/dist/httpd/httpd-2.4.3.tar.bz2'
sha1 '0ef1281bb758add937efe61c345287be2f27f662'
depends_on 'pcre'
def install
system './configure'
cd 'support' do
system 'make', 'ab'
bin.install('ab')
end
man1.install('docs/man/ab.1')
end
def test
print `"#{bin}/ab" -k -n 10 -c 10 http://www.apple.com/`
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment