forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfluxdb08.rb
90 lines (77 loc) · 2.99 KB
/
influxdb08.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
class Influxdb08 < Formula
desc "Time series, events, and metrics database"
homepage "http://influxdb.com/docs/v0.8/index.html"
url "https://s3.amazonaws.com/get.influxdb.org/influxdb-0.8.8.src.tar.gz"
sha256 "97fb5a4ffda1b333187ebd6449466d38d864686a3bd50a6c7bfb3deeae06cfae"
bottle do
cellar :any
sha256 "920f6879edf8b303815a14bf963e9c8fc78250288c3b843eca4ffd65304a95aa" => :yosemite
sha256 "69468d969b7f375e795174571dc96b4f525cd2492e612ff9734cb5066b096d9c" => :mavericks
sha256 "eb6544d65d7c24a23487a4d7d56970d4972810b4f5f2aa7e6cc921443fbf68ea" => :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
conflicts_with "influxdb", :because => "Differing versions of the same formula"
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", "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
<?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}/influxdb08</string>
<key>StandardErrorPath</key>
<string>#{var}/influxdb08/logs/influxdb.stderr.log</string>
<key>StandardOutPath</key>
<string>#{var}/influxdb08/logs/influxdb.stdout.log</string>
</dict>
</plist>
EOS
end
test do
system "#{bin}/influxdb", "-v"
end
end