aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2009-12-15 19:51:59 +0100
committerDavid Höppner2010-01-30 13:51:30 +0100
commite0a4db828536336b5a91f2a57696edaa1b8f03cf (patch)
treeb39f319b41db7b0bb562c53d2c712f840aba3ea7 /Library/Formula
parent3896b435d066e81a864930516340d07874b536ff (diff)
downloadhomebrew-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.rb14
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