diff options
Diffstat (limited to 'Library')
| -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 |
