diff options
| author | David Höppner | 2009-09-19 11:46:33 +0200 |
|---|---|---|
| committer | David Höppner | 2009-09-19 11:46:33 +0200 |
| commit | 1826f906357b3f95a00da184a297cd23a2e541f9 (patch) | |
| tree | 3c098c67aa48c4c4db7a3140fb0159c2227665ba /Library/Formula | |
| parent | f126b88b693dd70cdf24dc807d178ce9a397d0a6 (diff) | |
| download | homebrew-1826f906357b3f95a00da184a297cd23a2e541f9.tar.bz2 | |
Lighttpd formula
Security, speed, compliance, and flexibility -- all of these describe lighttpd
(pron. lighty) which is rapidly redefining efficiency of a webserver; as it is
designed and optimized for high performance environments. With a small memory
footprint compared to other web-servers, effective management of the cpu-load,
and advanced feature set (FastCGI, SCGI, Auth, Output-Compression, URL-Rewriting
and many more) lighttpd is the perfect solution for every server that is suffering
load problems. And best of all it's Open Source licensed under the revised BSD
license.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/lighttpd.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/lighttpd.rb b/Library/Formula/lighttpd.rb new file mode 100644 index 000000000..cf49dbc63 --- /dev/null +++ b/Library/Formula/lighttpd.rb @@ -0,0 +1,16 @@ +require 'brewkit' + +class Lighttpd <Formula + @url='http://www.lighttpd.net/download/lighttpd-1.4.23.tar.bz2' + @homepage='http://www.lighttpd.net/' + @md5='0ab6bb7b17bf0f515ce7dce68e5e215a' + + def deps + LibraryDep.new 'pcre' + end + + def install + system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--with-openssl", "--with-ldap" + system "make install" + end +end |
