aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lighttpd.rb
blob: 6e47bcba3d1ca90c471acb5702950d43a9501920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'formula'

class Lighttpd < Formula
  homepage 'http://www.lighttpd.net/'
  url 'http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.30.tar.bz2'
  sha256 '0d795597e4666dbf6ffe44b4a42f388ddb44736ddfab0b1ac091e5bb35212c2d'

  depends_on 'pkg-config' => :build
  depends_on 'pcre'
  depends_on 'lua' if ARGV.include? '--with-lua'

  def options
    [['--with-lua', 'Include Lua scripting support for mod_magnet']]
  end

  def install
    args = %W[
      --disable-dependency-tracking
      --prefix=#{prefix}
      --with-openssl
      --with-ldap
    ]
    args << "--with-lua" if ARGV.include? '--with-lua'
    system "./configure", *args
    system "make install"
  end
end