class H2o < Formula homepage "https://github.com/h2o/h2o/" url "https://github.com/h2o/h2o/archive/v0.9.1.tar.gz" sha1 "1e701935d71be5253413e2263739a792c9ed4f51" head "https://github.com/h2o/h2o.git" bottle do sha1 "494580883b683f9884074095a6b2629ad528f1d0" => :yosemite sha1 "d1abaf0caeb1d7c38ebaf517cf29dae4add02199" => :mavericks sha1 "cac2b5d0a857f50d3dd5fcf2576e40506353e35b" => :mountain_lion end option "with-libuv", "Build the H2O library as well as 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 Label #{plist_name} RunAtLoad KeepAlive ProgramArguments #{opt_bin}/h2o -c #{etc}/h2o/h2o.conf EOS end test do system bin/"h2o", "--version" end end