homebrew-core/Formula/lighttpd.rb

26 lines
688 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Lighttpd < Formula
homepage 'http://www.lighttpd.net/'
url 'http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.32.tar.bz2'
sha256 '60691b2dcf3ad2472c06b23d75eb0c164bf48a08a630ed3f308f61319104701f'
2012-09-02 18:51:43 +00:00
option 'with-lua', 'Include Lua scripting support for mod_magnet'
depends_on 'pkg-config' => :build
2009-12-11 17:41:23 +00:00
depends_on 'pcre'
2012-09-02 18:51:43 +00:00
depends_on 'lua' => :optional if build.include? 'with-lua'
def install
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--with-openssl
--with-ldap
]
2012-09-02 18:51:43 +00:00
args << "--with-lua" if build.include? 'with-lua'
system "./configure", *args
system "make install"
end
end