diff options
| author | Brett Koonce | 2013-10-25 20:38:07 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-26 17:03:24 -0700 |
| commit | e4d514a8b183fea62a892e8cd9efb689f9336c5e (patch) | |
| tree | 8b386a7fe6f00225de7bf115c5c75ab50f3e6791 /Library | |
| parent | 58f0b154964314294296944cc1d97121834ce3ce (diff) | |
| download | homebrew-e4d514a8b183fea62a892e8cd9efb689f9336c5e.tar.bz2 | |
lighttpd 1.4.33
Closes #23614.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/lighttpd.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Library/Formula/lighttpd.rb b/Library/Formula/lighttpd.rb index d2481bf2a..04214f965 100644 --- a/Library/Formula/lighttpd.rb +++ b/Library/Formula/lighttpd.rb @@ -2,12 +2,13 @@ require 'formula' 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' + url 'http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.33.tar.bz2' + sha256 '2ff2324658c0f90e7d39afd40f08f11ca230903b9019c31a2bbecd8f087f235e' option 'with-lua', 'Include Lua scripting support for mod_magnet' depends_on 'pkg-config' => :build + depends_on 'automake' => :build depends_on 'pcre' depends_on 'lua' => :optional depends_on 'libev' => :optional @@ -34,6 +35,9 @@ class Lighttpd < Formula args << "--with-lua" if build.with? 'lua' args << "--with-libev" if build.with? 'libev' + # fixed upstream, should be in next release: http://redmine.lighttpd.net/issues/2517 + inreplace 'src/Makefile.am', '$(LDAP_LIB)', '$(SSL_LIB) $(LDAP_LIB)' + system "./configure", *args system "make install" |
