homebrew-core/Formula/lighttpd.rb
kret fdff0f50b4 Updated lighttpd to version 1.4.26.
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-03-22 13:05:14 +01:00

17 lines
450 B
Ruby

require 'formula'
class Lighttpd <Formula
url 'http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.26.tar.bz2'
md5 'a682c8efce47a2f4263a247ba0813c9b'
homepage 'http://www.lighttpd.net/'
depends_on 'pkg-config'
depends_on 'pcre'
def install
args = ["--prefix=#{prefix}", "--disable-dependency-tracking",
"--with-openssl", "--with-ldap"]
system "./configure", *args
system "make install"
end
end