homebrew-core/Formula/passenger.rb
2015-10-20 08:37:56 +01:00

86 lines
3.2 KiB
Ruby

class Passenger < Formula
desc "Server for Ruby, Python, and Node.js apps via Apache/NGINX"
homepage "https://www.phusionpassenger.com/"
url "https://s3.amazonaws.com/phusion-passenger/releases/passenger-5.0.20.tar.gz"
sha256 "a5b35780beb7ecd39d18375acab3e4fa1a2e104b7a324f41a1f89c99e7b8b04c"
head "https://github.com/phusion/passenger.git"
bottle do
cellar :any
revision 1
sha256 "575346312a33a83eaf5f8a6af39f7b48e81a319f680b7698c2cb058d2937ff95" => :el_capitan
sha256 "13352bf7e81bd1b1032536704cec4359796aaa52cfa85db412b3bc3e4cc933d8" => :yosemite
sha256 "c7c76f1c1268cdc3378acdd8f8d83860ad02b934ec3f7e5fd9dca7c16cc1c7db" => :mavericks
end
depends_on "pcre"
depends_on "openssl"
depends_on :macos => :lion
option "without-apache2-module", "Disable Apache2 module"
def install
rake "apache2" if build.with? "apache2-module"
rake "nginx"
system("/usr/bin/ruby ./bin/passenger-config compile-nginx-engine")
(libexec/"download_cache").mkpath
# Fixes https://github.com/phusion/passenger/issues/1288
rm_rf "buildout/libev"
rm_rf "buildout/libuv"
rm_rf "buildout/cache"
necessary_files = Dir[".editorconfig", "configure", "Rakefile", "README.md", "CONTRIBUTORS",
"CONTRIBUTING.md", "LICENSE", "CHANGELOG", "INSTALL.md",
"passenger.gemspec", "build", "bin", "doc", "man", "dev", "src",
"resources", "buildout"]
libexec.mkpath
cp_r necessary_files, libexec, :preserve => true
# Allow Homebrew to create symlinks for the Phusion Passenger commands.
bin.install_symlink Dir["#{libexec}/bin/*"]
# Ensure that the Phusion Passenger commands can always find their library
# files.
locations_ini = `/usr/bin/ruby ./bin/passenger-config --make-locations-ini --for-native-packaging-method=homebrew`
locations_ini.gsub!(/=#{Regexp.escape Dir.pwd}/, "=#{libexec}")
(libexec/"src/ruby_supportlib/phusion_passenger/locations.ini").write(locations_ini)
ruby_libdir = `/usr/bin/ruby ./bin/passenger-config about ruby-libdir`.strip
ruby_libdir.gsub!(/^#{Regexp.escape Dir.pwd}/, libexec)
system "/usr/bin/ruby", "./dev/install_scripts_bootstrap_code.rb",
"--ruby", ruby_libdir, *Dir[libexec/"bin/*"]
nginx_addon_dir = `/usr/bin/ruby ./bin/passenger-config about nginx-addon-dir`.strip
nginx_addon_dir.gsub!(/^#{Regexp.escape Dir.pwd}/, libexec)
system "/usr/bin/ruby", "./dev/install_scripts_bootstrap_code.rb",
"--nginx-module-config", libexec/"bin", "#{nginx_addon_dir}/config"
mv libexec/"man", share
end
def caveats
s = <<-EOS.undent
To activate Phusion Passenger for Nginx, run:
brew install nginx --with-passenger
EOS
s += <<-EOS.undent if build.with? "apache2-module"
To activate Phusion Passenger for Apache, create /etc/apache2/other/passenger.conf:
LoadModule passenger_module #{opt_libexec}/buildout/apache2/mod_passenger.so
PassengerRoot #{opt_libexec}/lib/phusion_passenger/locations.ini
PassengerDefaultRuby /usr/bin/ruby
EOS
s
end
test do
ruby_libdir = `#{HOMEBREW_PREFIX}/bin/passenger-config --ruby-libdir`.strip
assert_equal "#{libexec}/src/ruby_supportlib", ruby_libdir
end
end