381633024c
Closes Homebrew/homebrew#19981. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Passenger < Formula
|
|
homepage 'https://www.phusionpassenger.com/'
|
|
url 'https://phusion-passenger.googlecode.com/files/passenger-4.0.5.tar.gz'
|
|
sha1 '4c1e12dae0c972e1498f2dae258929d8fa4ba42d'
|
|
head 'https://github.com/FooBarWidget/passenger.git'
|
|
|
|
depends_on 'curl'
|
|
|
|
def install
|
|
rake "apache2"
|
|
rake "nginx"
|
|
cp_r Dir["*"], prefix, :preserve => true
|
|
|
|
# The various scripts in bin cannot correctly locate their root directory
|
|
# when invoked as symlinks in /usr/local/bin. We create wrapper scripts
|
|
# to solve this problem.
|
|
mv bin, libexec
|
|
mkdir bin
|
|
Dir[libexec/"*"].each do |orig_script|
|
|
name = File.basename(orig_script)
|
|
(bin/name).write <<-EOS.undent
|
|
#!/bin/sh
|
|
exec #{orig_script} "$@"
|
|
EOS
|
|
end
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To activate Phusion Passenger for Apache, create /etc/apache2/other/passenger.conf:
|
|
LoadModule passenger_module #{HOMEBREW_PREFIX}/opt/passenger/libout/apache2/mod_passenger.so
|
|
PassengerRoot #{HOMEBREW_PREFIX}/opt/passenger
|
|
PassengerDefaultRuby /usr/bin/ruby
|
|
|
|
To activate Phusion Passenger for Nginx, run:
|
|
brew install nginx --with-passenger
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
if `#{HOMEBREW_PREFIX}/bin/passenger-config --root`.strip != prefix.to_s
|
|
raise "Invalid root path"
|
|
end
|
|
end
|
|
end
|