2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-19 09:46:33 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lighttpd < Formula
|
2010-08-23 10:03:21 +00:00
|
|
|
url 'http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.28.tar.bz2'
|
|
|
|
md5 '586eb535d31ac299652495b058dd87c4'
|
2009-12-11 17:41:23 +00:00
|
|
|
homepage 'http://www.lighttpd.net/'
|
2009-09-19 09:46:33 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2009-12-11 17:41:23 +00:00
|
|
|
depends_on 'pcre'
|
2009-09-19 09:46:33 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--with-openssl", "--with-ldap"
|
2009-09-19 09:46:33 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|