93 lines
3.6 KiB
Ruby
93 lines
3.6 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.2.0.tar.gz"
|
|
sha256 "e46cd80c6e17d70ab7c880795ef83936b4790e4dad4970dee19ce952f091704a"
|
|
head "https://github.com/phusion/passenger.git", :branch => "stable-5.1"
|
|
|
|
bottle do
|
|
sha256 "559795b1fb0393549707ec614b901b881dce55c3a6daa90071fd898af83895c0" => :high_sierra
|
|
sha256 "dbc855e6254a2cb9cf4b134648451e597d731dc409c28362d0634dfc1b312598" => :sierra
|
|
sha256 "049a11dc0635f173b584aebe6d9592a662d4f52fdc71fb2eb80475c1669aa5a9" => :el_capitan
|
|
end
|
|
|
|
option "without-apache2-module", "Disable Apache2 module"
|
|
|
|
depends_on :macos => :lion
|
|
depends_on "pcre"
|
|
depends_on "openssl"
|
|
|
|
def install
|
|
# https://github.com/Homebrew/homebrew-core/pull/1046
|
|
ENV.delete("SDKROOT")
|
|
|
|
inreplace "src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb" do |s|
|
|
s.gsub! "-I/usr/local/opt/openssl/include", "-I#{Formula["openssl"].opt_include}"
|
|
s.gsub! "-L/usr/local/opt/openssl/lib", "-L#{Formula["openssl"].opt_lib}"
|
|
end
|
|
|
|
system "rake", "apache2" if build.with? "apache2-module"
|
|
system "rake", "nginx"
|
|
|
|
(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 = %w[.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/*"]
|
|
|
|
system("/usr/bin/ruby ./bin/passenger-config compile-nginx-engine")
|
|
cp Dir["buildout/support-binaries/nginx*"], libexec/"buildout/support-binaries", :preserve => true
|
|
|
|
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
|
|
To activate Phusion Passenger for Nginx, run:
|
|
brew install nginx --with-passenger
|
|
|
|
EOS
|
|
|
|
s += <<~EOS 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}/src/ruby_supportlib/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
|