837cd7beef
Update lighttpd to 1.4.30 For release notes look here: http://www.lighttpd.net/2011/12/18/1-4-30-faster-than-santa-your-first-present-this-year Closes Homebrew/homebrew#9182. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
516 B
Ruby
17 lines
516 B
Ruby
require 'formula'
|
|
|
|
class Lighttpd < Formula
|
|
url 'http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.30.tar.bz2'
|
|
sha256 '0d795597e4666dbf6ffe44b4a42f388ddb44736ddfab0b1ac091e5bb35212c2d'
|
|
homepage 'http://www.lighttpd.net/'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'pcre'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-openssl", "--with-ldap"
|
|
system "make install"
|
|
end
|
|
end
|