forked from keitheis/homebrew-dupes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ab.rb
47 lines (38 loc) · 1.34 KB
/
ab.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'formula'
class Ab < Formula
homepage 'http://httpd.apache.org/docs/trunk/programs/ab.html'
url 'http://archive.apache.org/dist/httpd/httpd-2.4.3.tar.bz2'
sha256 'd82102b9c111f1892fb20a2bccf4370de579c6521b2f172ed0b36f2759fb249e'
depends_on 'libtool'
def patches
{ :p1 => DATA } # Disable requirement for PCRE ("ab" does not need that)
end
def install
# Mountain Lion requires this to be set, as otherwise libtool complains
# about being "unable to infer tagged configuration"
ENV['LTFLAGS'] = '--tag CC'
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
cd 'support' do
system 'make', 'ab'
# We install into the "bin" directory, although "ab" would normally be
# installed to "/usr/sbin/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
__END__
diff --git a/configure b/configure
index 5f4c09f..84d3de2 100755
--- a/configure
+++ b/configure
@@ -6130,8 +6130,6 @@ $as_echo "$as_me: Using external PCRE library from $PCRE_CONFIG" >&6;}
done
fi
-else
- as_fn_error $? "pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/" "$LINENO" 5
fi
APACHE_VAR_SUBST="$APACHE_VAR_SUBST PCRE_LIBS"