require 'formula'
class Nginx < Formula
homepage 'http://nginx.org/'
url 'http://nginx.org/download/nginx-1.0.12.tar.gz'
md5 'd0ceefeb2a68ecb19e78ee894a5b52a3'
devel do
url 'http://nginx.org/download/nginx-1.1.14.tar.gz'
md5 '16d523e395778ef35b49a2fa6ad18af0'
end
depends_on 'pcre'
skip_clean 'logs'
# Changes default port to 8080
# Tell configure to look for pcre in HOMEBREW_PREFIX
def patches
DATA
end
def options
[
['--with-passenger', "Compile with support for Phusion Passenger module"],
['--with-webdav', "Compile with support for WebDAV module"]
]
end
def passenger_config_args
passenger_root = `passenger-config --root`.chomp
if File.directory?(passenger_root)
return "--add-module=#{passenger_root}/ext/nginx"
end
puts "Unable to install nginx with passenger support. The passenger"
puts "gem must be installed and passenger-config must be in your path"
puts "in order to continue."
exit
end
def install
args = ["--prefix=#{prefix}",
"--with-http_ssl_module",
"--with-pcre",
"--conf-path=#{etc}/nginx/nginx.conf",
"--pid-path=#{var}/run/nginx.pid",
"--lock-path=#{var}/nginx/nginx.lock"]
args << passenger_config_args if ARGV.include? '--with-passenger'
args << "--with-http_dav_module" if ARGV.include? '--with-webdav'
system "./configure", *args
system "make"
system "make install"
man8.install "objs/nginx.8"
plist_path.write startup_plist
plist_path.chmod 0644
end
def caveats; <<-EOS.undent
In the interest of allowing you to run `nginx` without `sudo`, the default
port is set to localhost:8080.
If you want to host pages on your local machine to the public, you should
change that to localhost:80, and run `sudo nginx`. You'll need to turn off
any other web servers running port 80, of course.
You can start nginx automatically on login running as your user with:
mkdir -p ~/Library/LaunchAgents
cp #{plist_path} ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
Though note that if running as your user, the launch agent will fail if you
try to use a port below 1024 (such as http's default of 80.)
EOS
end
def startup_plist
return <<-EOPLIST
require 'formula' class Naturaldocs < Formula homepage 'http://www.naturaldocs.org/' url 'http://downloads.sourceforge.net/project/naturaldocs/Stable%20Releases/1.52/NaturalDocs-1.52.zip' sha1 '0457bdd60beb2275a1fad414e6ba0a56798a7993' def install # Remove Windows files rm_rf Dir['*.bat'] libexec.install Dir['*'] chmod 0755, libexec+'NaturalDocs' bin.install_symlink libexec+'NaturalDocs' end end