siege 2.72

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
nibbles 2bits 2012-06-11 02:12:02 -07:00 committed by Adam Vandenberg
parent e6b9b55489
commit b8ce691940

View file

@ -2,17 +2,17 @@ require 'formula'
class Siege < Formula
homepage 'http://www.joedog.org/index/siege-home'
url "http://www.joedog.org/pub/siege/siege-2.71.tar.gz"
sha1 '1322ed19eae8f6ee25a3ee5c3d6ad450bd180a79'
url "http://www.joedog.org/pub/siege/siege-2.72.tar.gz"
sha1 '286e7c1b30a38d3868b743eedd87058a6ad658a2'
def install
# To avoid unnecessary warning due to hardcoded path, create the folder first
(prefix+'etc').mkdir
system "./configure",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--localstatedir=#{var}",
"--with-ssl"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--localstatedir=#{var}",
"--with-ssl",
system "make install"
end
@ -33,4 +33,3 @@ class Siege < Formula
EOS
end
end