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 3 bottle do cellar :any sha256 "3e206b8e301f586d213c6ca1a5a9d49f01b1d611fead974b371e744bb06d7212" => :sierra sha256 "b35297a227fbc8771b45aa7b8b8e75babc414808b72f16bd08c72af510a9d9dc" => :el_capitan sha256 "694d33a93e8dde975b11ebd9e8a79a106112a625c1e1f67e71a6115c7b388797" => :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