88 lines
2.7 KiB
Ruby
88 lines
2.7 KiB
Ruby
require "formula"
|
|
|
|
class Influxdb < Formula
|
|
homepage "http://influxdb.com"
|
|
url "https://s3.amazonaws.com/get.influxdb.org/influxdb-0.8.7.src.tar.gz"
|
|
sha1 "306faf54878276c374b129fab4afee9556e413cc"
|
|
|
|
bottle do
|
|
sha1 "c62e03d3fb326c5a591bc1ee2462596301e67944" => :yosemite
|
|
sha1 "ae44beee742f86ee94cb5c1d55e0333fdf4a95e4" => :mavericks
|
|
sha1 "870d1e180bbc27a8bd4e9a2448665b3344ee8cc1" => :mountain_lion
|
|
end
|
|
|
|
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" do |s|
|
|
s.gsub! "echo -n", "$as_echo_n"
|
|
end
|
|
|
|
system "./configure", "--with-flex=#{flex}", "--with-bison=#{bison}", "--with-rocksdb"
|
|
system "make", "parser", "protobuf"
|
|
system "go", "build", "-tags", "rocksdb", "-o", "influxdb", "github.com/influxdb/influxdb/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! "influxdb.log", "#{var}/influxdb/logs/influxdb.log"
|
|
end
|
|
|
|
bin.install "influxdb" => "influxdb"
|
|
etc.install "config.sample.toml" => "influxdb.conf"
|
|
|
|
(var/"influxdb/data").mkpath
|
|
(var/"influxdb/raft").mkpath
|
|
end
|
|
|
|
plist_options :manual => "influxdb -config=#{HOMEBREW_PREFIX}/etc/influxdb.conf"
|
|
|
|
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>KeepAlive</key>
|
|
<dict>
|
|
<key>SuccessfulExit</key>
|
|
<false/>
|
|
</dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/influxdb</string>
|
|
<string>-config=#{etc}/influxdb.conf</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{var}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/influxdb.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/influxdb.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/influxdb", "-v"
|
|
end
|
|
end
|