require "formula" class Influxdb < Formula homepage "http://influxdb.org" url "http://get.influxdb.org/influxdb-0.7.3.src.tar.gz" sha1 "cc774498036a758661965eb01c45c1941bf0ac10" bottle do sha1 "eec1070cf8165525e350ce00c07802a16260a44c" => :mavericks sha1 "d50eae0ed37ad639d7a04f06c83b1398bc738386" => :mountain_lion sha1 "d76c3b4aac9d5adc016f4ab7eed37951f68b4c22" => :lion end depends_on "leveldb" depends_on "protobuf" => :build depends_on "bison" => :build depends_on "flex" => :build depends_on "go" => :build def install ENV["GOPATH"] = buildpath flex = Formula["flex"].bin/"flex" bison = Formula["bison"].bin/"bison" system "./configure", "--with-flex=#{flex}", "--with-bison=#{bison}" system "make", "dependencies", "protobuf", "parser" system "go", "build", "daemon" inreplace "config.sample.toml" do |s| s.gsub! "/tmp/influxdb/development/db", "#{var}/influxdb/data" s.gsub! "/tmp/influxdb/development/raft", "#{var}/influxdb/raft" s.gsub! "/tmp/influxdb/development/wal", "#{var}/influxdb/wal" s.gsub! "./admin", "#{opt_share}/admin" end bin.install "daemon" => "influxdb" etc.install "config.sample.toml" => "influxdb.conf" share.install "admin" (var/"influxdb/data").mkpath (var/"influxdb/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} StandardErrorPath #{var}/log/influxdb.log StandardOutPath #{var}/log/influxdb.log EOS end test do system "#{bin}/influxdb", "-v" end end