homebrew-core/Formula/cherokee.rb
Chris Hoffman 8648241a9b Updated cherokee to 1.0.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-08 07:22:02 -07:00

45 lines
1.7 KiB
Ruby

require 'formula'
class Cherokee <Formula
url 'http://www.cherokee-project.com/download/1.0/1.0.5/cherokee-1.0.5.tar.gz'
homepage 'http://www.cherokee-project.com/'
sha1 '61902974f839adbb0459c4df709b4d57f08b7ac2'
depends_on 'gettext'
skip_clean "var/run"
skip_clean "var/log"
skip_clean "var/lib/cherokee/graphs/images"
def caveats
<<-EOS.undent
Cherokee is setup to run with your user permissions as part of the
www group on port 80. This can be changed in the cherokee-admin
but be aware the new user will need permissions to write to:
#{var}/cherokee
for logging and runtime files.
If this is your first install, automatically load on startup with:
sudo cp #{prefix}/org.cherokee.webserver.plist /Library/LaunchDaemons
sudo launchctl load -w /Library/LaunchDaemons/org.cherokee.webserver.plist
If this is an upgrade and you already have the plist loaded:
sudo launchctl unload -w /Library/LaunchDaemons/org.cherokee.webserver.plist
sudo cp #{prefix}/org.cherokee.webserver.plist /Library/LaunchDaemons
sudo launchctl load -w /Library/LaunchDaemons/org.cherokee.webserver.plist
EOS
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--sysconfdir=#{etc}",
"--localstatedir=#{var}/cherokee",
"--with-wwwuser=#{ENV['USER']}",
"--with-wwwgroup=www"
system "make install"
prefix.install "org.cherokee.webserver.plist"
(share+'cherokee/admin/server.py').chmod 0755
end
end