67 lines
2.3 KiB
Ruby
67 lines
2.3 KiB
Ruby
class Trafficserver < Formula
|
|
homepage "https://trafficserver.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=trafficserver/trafficserver-5.3.0.tar.bz2"
|
|
mirror "https://archive.apache.org/dist/trafficserver/trafficserver-5.3.0.tar.bz2"
|
|
sha256 "d14184546769bac7134804c15c2fea32232c28c920717167e633d29e6eb0822b"
|
|
|
|
head do
|
|
url "https://github.com/apache/trafficserver.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
|
|
fails_with :gcc do
|
|
cause "symbol(s) not found for architecture x86_64: https://issues.apache.org/jira/browse/TS-3630"
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
sha256 "63e65ccf81d3bd0624026df914cbc32a92339831c66f3dce1e5ce23ea3ea0c8d" => :yosemite
|
|
sha256 "c24efc1d0699ca8e2dae90ce7d8fc868cc5bd777fa6ac50374c154af82694f8e" => :mavericks
|
|
sha256 "8616a64385d421ed0db0c3d692a00b6b21043a54a7125c0f331d3b56659b073f" => :mountain_lion
|
|
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"
|
|
system "autoreconf", "-fvi" if build.head?
|
|
args = [
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}",
|
|
"--with-openssl=#{Formula["openssl"].opt_prefix}",
|
|
"--with-user=#{ENV["USER"]}",
|
|
"--with-group=admin"
|
|
]
|
|
args << "--enable-spdy" if build.with? "spdy"
|
|
args << "--enable-experimental-plugins" if build.with? "experimental-plugins"
|
|
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
|
|
|
|
test do
|
|
assert_match "Apache Traffic Server is not running.", shell_output("#{bin}/trafficserver status").chomp
|
|
end
|
|
end
|