84 lines
2.7 KiB
Ruby
84 lines
2.7 KiB
Ruby
class Trafficserver < Formula
|
|
desc "HTTP/1.1 compliant caching proxy server"
|
|
homepage "https://trafficserver.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=trafficserver/trafficserver-6.0.0.tar.bz2"
|
|
mirror "https://archive.apache.org/dist/trafficserver/trafficserver-6.0.0.tar.bz2"
|
|
sha256 "1ef6a9ed1d53532bbe2c294d86d4103a0140e3f23a27970936366f1bc8feb3d1"
|
|
|
|
bottle do
|
|
revision 3
|
|
sha256 "790009af9f33df827e87ba0f704852ddb72f994c7a981403c2f0793a36105214" => :el_capitan
|
|
sha256 "f54117573d34ce77b0a325db2af58ee83d8f7b86f22eb319b7b088c1a471c34b" => :yosemite
|
|
sha256 "1a9445b60e8aa891fa0666d9b5f4620d399d361558cc810307d8f2877a2dc05c" => :mavericks
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/apache/trafficserver.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
option "with-spdy", "Build with SPDY protocol support"
|
|
option "with-experimental-plugins", "Enable experimental plugins"
|
|
|
|
depends_on "openssl"
|
|
depends_on "pcre"
|
|
|
|
if build.with? "spdy"
|
|
depends_on "spdylay"
|
|
depends_on "pkg-config" => :build
|
|
end
|
|
|
|
needs :cxx11
|
|
|
|
def install
|
|
ENV.cxx11
|
|
# Needed for correct ./configure detections.
|
|
ENV.enable_warnings
|
|
# Needed for OpenSSL headers on Lion.
|
|
ENV.append_to_cflags "-Wno-deprecated-declarations"
|
|
|
|
(var/"log/trafficserver").mkpath
|
|
(var/"trafficserver").mkpath
|
|
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--mandir=#{man}
|
|
--localstatedir=#{var}
|
|
--sysconfdir=#{etc}/trafficserver
|
|
--with-openssl=#{Formula["openssl"].opt_prefix}
|
|
--with-group=admin
|
|
--disable-silent-rules
|
|
]
|
|
|
|
args << "--enable-spdy" if build.with? "spdy"
|
|
args << "--enable-experimental-plugins" if build.with? "experimental-plugins"
|
|
|
|
system "autoreconf", "-fvi" if build.head?
|
|
system "./configure", *args
|
|
|
|
# Fix wrong username in the generated startup script for bottles.
|
|
inreplace "rc/trafficserver.in", "@pkgsysuser@", "$USER"
|
|
if build.with? "experimental-plugins"
|
|
# Disable mysql_remap plugin due to missing symbol compile error:
|
|
# https://issues.apache.org/jira/browse/TS-3490
|
|
inreplace "plugins/experimental/Makefile", " mysql_remap", ""
|
|
end
|
|
|
|
system "make" if build.head?
|
|
system "make", "install"
|
|
end
|
|
|
|
def post_install
|
|
config = etc/"trafficserver/records.config"
|
|
return unless File.exist?(config)
|
|
return if File.read(config).include?("proxy.config.admin.user_id STRING #{ENV["USER"]}")
|
|
|
|
config.append_lines "CONFIG proxy.config.admin.user_id STRING #{ENV["USER"]}"
|
|
end
|
|
|
|
test do
|
|
assert_match "Apache Traffic Server is not running.", shell_output("#{bin}/trafficserver status").chomp
|
|
end
|
|
end
|