aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lighttpd.rb
blob: ce2b8a286411db6509c0af2d1b8229272059b87b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'brewkit'

class Lighttpd <Formula
  @url='http://www.lighttpd.net/download/lighttpd-1.4.23.tar.bz2'
  @homepage='http://www.lighttpd.net/'
  @md5='0ab6bb7b17bf0f515ce7dce68e5e215a'

  depends_on :pcre

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--with-openssl", "--with-ldap"
    system "make install"
  end
end