homebrew-core/Formula/h2o.rb

84 lines
2.2 KiB
Ruby
Raw Normal View History

class H2o < Formula
homepage "https://github.com/h2o/h2o/"
url "https://github.com/h2o/h2o/archive/v0.9.2.tar.gz"
sha1 "001f5aefcd829467ed64b328ff0d35b736593dec"
head "https://github.com/h2o/h2o.git"
2015-01-13 13:48:29 +00:00
bottle do
2015-02-11 11:13:29 +00:00
sha1 "3a661417da4cf981935b3ec39a9e0401ce0cfb30" => :yosemite
sha1 "046477212770943f9e039fb73608d393cb5d6c61" => :mavericks
sha1 "1e4bf69b5e1f81c0b5c1bca54928643b613f312c" => :mountain_lion
2015-01-13 13:48:29 +00:00
end
option "with-libuv", "Build the H2O library in addition to the executable."
depends_on "cmake" => :build
depends_on "libyaml"
depends_on "openssl"
depends_on "libuv" => :optional
def install
system "cmake", ".", *std_cmake_args
if build.with? "libuv"
system "make", "libh2o"
lib.install "libh2o.a"
end
system "make", "install"
mkdir_p etc/"h2o"
mkdir_p var/"h2o"
(var+"h2o").install "examples/doc_root/index.html"
# Write up a basic example conf for testing.
(buildpath+"brew/h2o.conf").write conf_example
(etc+"h2o").install buildpath/"brew/h2o.conf"
end
# This is simplified from examples/h2o/h2o.conf upstream.
def conf_example; <<-EOS.undent
listen: 8080
hosts:
"127.0.0.1.xip.io:8080":
paths:
/:
file.dir: #{var}/h2o/
EOS
end
def caveats; <<-EOS.undent
A basic example configuration file has been placed in #{etc}/h2o.
You can find fuller, unmodified examples here:
https://github.com/h2o/h2o/tree/master/examples/h2o
EOS
end
plist_options :manual => "h2o"
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/h2o</string>
<string>-c</string>
<string>#{etc}/h2o/h2o.conf</string>
</array>
</dict>
</plist>
EOS
end
test do
system bin/"h2o", "--version"
end
end