aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/passenger.rb
blob: 7bd9892c6de6b184be14bc3634aef792534b53ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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