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
|
2012-06-09 20:11:56 +00:00
|
|
|
homepage 'http://www.lighttpd.net/'
|
2012-07-16 03:24:26 +00:00
|
|
|
url 'http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.31.tar.bz2'
|
|
|
|
sha256 '5209e7a25d3044cb21b34d6a2bb3a6f6c216ba903ea486a803d070582e5e26ac'
|
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'
|
2012-06-09 20:11:56 +00:00
|
|
|
depends_on 'lua' if ARGV.include? '--with-lua'
|
|
|
|
|
|
|
|
def options
|
|
|
|
[['--with-lua', 'Include Lua scripting support for mod_magnet']]
|
|
|
|
end
|
2009-09-19 09:46:33 +00:00
|
|
|
|
|
|
|
def install
|
2012-06-09 20:11:56 +00:00
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--with-openssl
|
|
|
|
--with-ldap
|
|
|
|
]
|
|
|
|
args << "--with-lua" if ARGV.include? '--with-lua'
|
|
|
|
system "./configure", *args
|
2009-09-19 09:46:33 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|