class InfluxdbAT08 < Formula desc "Time series, events, and metrics database" homepage "https://influxdb.com/docs/v0.8/index.html" url "https://s3.amazonaws.com/get.influxdb.org/influxdb-0.8.8.src.tar.gz" sha256 "97fb5a4ffda1b333187ebd6449466d38d864686a3bd50a6c7bfb3deeae06cfae" revision 8 bottle do cellar :any sha256 "1eccaa7ef731c2905b0c1c02b62e7eb963fa24809935de46eb92d4ef5997ac50" => :sierra sha256 "09d982dc5f5cd0cb43b1e8048c37b11e7d82bc53d5782d79223a6e2d500984f7" => :el_capitan sha256 "c77fde31229be70e4d3ecc328b03f6d4c95690b4dc76fbf6464efc0e8fe6f2b4" => :yosemite end keg_only :versioned_formula depends_on "leveldb" depends_on "rocksdb" depends_on "autoconf" => :build depends_on "protobuf" => :build depends_on "bison" => :build depends_on "flex" => :build depends_on "go" => :build depends_on "gawk" => :build depends_on :hg => :build def install ENV["GOPATH"] = buildpath Dir.chdir File.join(buildpath, "src", "github.com", "influxdb", "influxdb") flex = Formula["flex"].bin/"flex" bison = Formula["bison"].bin/"bison" inreplace "configure", "echo -n", "$as_echo_n" system "./configure", "--with-flex=#{flex}", "--with-bison=#{bison}", "--with-rocksdb" system "make", "parser", "protobuf" system "go", "build", "-tags", "leveldb rocksdb", "-o", "influxdb", "github.com/influxdb/influxdb/daemon" inreplace "config.sample.toml" do |s| s.gsub! "/tmp/influxdb/development/db", "#{var}/influxdb08/data" s.gsub! "/tmp/influxdb/development/raft", "#{var}/influxdb08/raft" s.gsub! "/tmp/influxdb/development/wal", "#{var}/influxdb08/wal" s.gsub! "influxdb.log", "#{var}/influxdb08/logs/influxdb.log" end bin.install "influxdb" => "influxdb" etc.install "config.sample.toml" => "influxdb.conf" (var/"influxdb08/data").mkpath (var/"influxdb08/raft").mkpath end plist_options :manual => "influxdb -config=#{HOMEBREW_PREFIX}/etc/influxdb.conf" def plist; <<-EOS.undent KeepAlive SuccessfulExit Label #{plist_name} ProgramArguments #{opt_bin}/influxdb -config=#{etc}/influxdb.conf RunAtLoad WorkingDirectory #{var}/influxdb08 StandardErrorPath #{var}/influxdb08/logs/influxdb.stderr.log StandardOutPath #{var}/influxdb08/logs/influxdb.stdout.log EOS end test do system "#{bin}/influxdb", "-v" end end