Updated cherokee to 1.0.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
b5b4860c29
commit
3ff0be3cf7
1 changed files with 27 additions and 3 deletions
|
@ -1,14 +1,38 @@
|
|||
require 'formula'
|
||||
|
||||
class Cherokee <Formula
|
||||
url 'http://www.cherokee-project.com/download/0.99/0.99.44/cherokee-0.99.44.tar.gz'
|
||||
url 'http://www.cherokee-project.com/download/1.0/1.0.2/cherokee-1.0.2.tar.gz'
|
||||
homepage 'http://www.cherokee-project.com/'
|
||||
md5 '268e7130c12b441523de963f95b9b85d'
|
||||
md5 'a6c8bdcca3e64349d537d519f09915ba'
|
||||
|
||||
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 (#{ENV['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} for logging and runtime files.
|
||||
|
||||
If this is your first install, automatically load on startup with:
|
||||
sudo cp #{prefix}/org.cherokee.webserver.plist /System/Library/LaunchDaemons
|
||||
sudo launchctl load -w /System/Library/LaunchDaemons/org.cherokee.webserver.plist
|
||||
|
||||
If this is an upgrade and you already have the org.cherokee.webserver.plist loaded:
|
||||
sudo launchctl unload -w /System/Library/LaunchDaemons/org.cherokee.webserver.plist
|
||||
sudo cp #{prefix}/org.cherokee.webserver.plist /System/Library/LaunchDaemons
|
||||
sudo launchctl load -w /System/Library/LaunchDaemons/org.cherokee.webserver.plist
|
||||
EOS
|
||||
end
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--with-wwwuser=#{ENV['USER']}", "--with-wwwgroup=www"
|
||||
system "make install"
|
||||
|
||||
prefix.install "org.cherokee.webserver.plist"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue