diff options
| author | David Höppner | 2009-12-15 19:51:59 +0100 |
|---|---|---|
| committer | David Höppner | 2010-01-30 13:51:30 +0100 |
| commit | e0a4db828536336b5a91f2a57696edaa1b8f03cf (patch) | |
| tree | b39f319b41db7b0bb562c53d2c712f840aba3ea7 /Library/Formula | |
| parent | 3896b435d066e81a864930516340d07874b536ff (diff) | |
| download | homebrew-e0a4db828536336b5a91f2a57696edaa1b8f03cf.tar.bz2 | |
Cherokee formula
Cherokee is a very fast, flexible and easy to configure Web Server. It supports
the widespread technologies nowadays: FastCGI, SCGI, PHP, CGI, uWSGI, SSI, TLS
and SSL encrypted connections, Virtual hosts, Authentication, on the fly encoding,
Load Balancing, Apache compatible log files, Data Base Balancing, Reverse HTTP
Proxy, Traffic Shaper, Video Streaming and much more.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/cherokee.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/cherokee.rb b/Library/Formula/cherokee.rb new file mode 100644 index 000000000..cd797ab5c --- /dev/null +++ b/Library/Formula/cherokee.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Cherokee <Formula + url 'http://www.cherokee-project.com/download/0.99/0.99.36/cherokee-0.99.36.tar.gz' + homepage 'http://www.cherokee-project.com/' + md5 '2b47f70c60de0c6e8ca487f6ccacb9f5' + + depends_on 'gettext' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
