aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2015-01-31 18:25:23 +0000
committerJack Nagel2015-01-31 16:58:23 -0500
commitc57f8202010ef38bae4fdb2fe2e98531ae478bb9 (patch)
tree64d38a6fc86ce97787fc044d667f418d60960156 /Library/Formula
parent2ac8250286a094827cfba83aec31b03c0007d70a (diff)
downloadhomebrew-c57f8202010ef38bae4fdb2fe2e98531ae478bb9.tar.bz2
slowhttptest: fix system openssl linkage
More OpenSSL system linkage. Closes #36420. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/slowhttptest.rb13
1 files changed, 7 insertions, 6 deletions
diff --git a/Library/Formula/slowhttptest.rb b/Library/Formula/slowhttptest.rb
index 8b22fafb9..c3954231d 100644
--- a/Library/Formula/slowhttptest.rb
+++ b/Library/Formula/slowhttptest.rb
@@ -1,13 +1,14 @@
-require 'formula'
-
class Slowhttptest < Formula
- homepage 'http://code.google.com/p/slowhttptest/'
- url 'https://slowhttptest.googlecode.com/files/slowhttptest-1.6.tar.gz'
- sha1 'f5a64365b987083015ac98f6c20746021176292e'
+ homepage "https://code.google.com/p/slowhttptest/"
+ url "https://slowhttptest.googlecode.com/files/slowhttptest-1.6.tar.gz"
+ sha1 "f5a64365b987083015ac98f6c20746021176292e"
+ revision 1
+
+ depends_on "openssl"
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
- system "make install"
+ system "make", "install"
end
test do