2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 03:54:11 +00:00
|
|
|
|
2009-12-11 05:47:51 +00:00
|
|
|
class Redis <Formula
|
2010-09-03 12:52:24 +00:00
|
|
|
url 'http://redis.googlecode.com/files/redis-2.0.0.tar.gz'
|
2010-04-30 21:35:34 +00:00
|
|
|
head 'git://github.com/antirez/redis.git'
|
2009-12-11 05:47:51 +00:00
|
|
|
homepage 'http://code.google.com/p/redis/'
|
2010-09-03 12:52:24 +00:00
|
|
|
sha1 '078601a2ee6d900f938709c9b40526646a449453'
|
2009-12-11 05:47:51 +00:00
|
|
|
|
|
|
|
def install
|
2010-06-16 18:50:36 +00:00
|
|
|
fails_with_llvm "Breaks with LLVM"
|
2010-07-02 07:45:40 +00:00
|
|
|
|
|
|
|
# Head and stable have different code layouts
|
|
|
|
src = File.exists?('src/Makefile') ? 'src' : '.'
|
|
|
|
system "make -C #{src}"
|
2010-04-30 21:35:34 +00:00
|
|
|
|
2010-09-03 12:52:24 +00:00
|
|
|
%w( redis-benchmark redis-cli redis-server redis-check-dump ).each { |p|
|
|
|
|
bin.install "#{src}/#{p}"
|
2010-04-30 21:35:34 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 20:57:40 +00:00
|
|
|
%w( run db/redis log ).each { |p| (var+p).mkpath }
|
2009-12-11 06:19:35 +00:00
|
|
|
|
2010-02-14 01:17:25 +00:00
|
|
|
# Fix up default conf file to match our paths
|
|
|
|
inreplace "redis.conf" do |s|
|
|
|
|
s.gsub! "/var/run/redis.pid", "#{var}/run/redis.pid"
|
|
|
|
s.gsub! "dir ./", "dir #{var}/db/redis/"
|
|
|
|
end
|
2010-05-29 20:57:40 +00:00
|
|
|
|
2010-07-22 18:15:08 +00:00
|
|
|
doc.install Dir["doc/*"]
|
2010-02-14 01:17:25 +00:00
|
|
|
etc.install "redis.conf"
|
2010-05-29 20:57:40 +00:00
|
|
|
(prefix+'io.redis.redis-server.plist').write startup_plist
|
2009-09-11 07:45:46 +00:00
|
|
|
end
|
2009-09-07 03:54:11 +00:00
|
|
|
|
2009-09-11 07:45:46 +00:00
|
|
|
def caveats
|
2010-04-30 21:35:34 +00:00
|
|
|
<<-EOS.undent
|
2010-05-29 20:57:40 +00:00
|
|
|
Automatically load on login with:
|
|
|
|
launchctl load -w #{prefix}/io.redis.redis-server.plist
|
|
|
|
|
|
|
|
To start redis manually:
|
2010-04-30 21:35:34 +00:00
|
|
|
redis-server #{etc}/redis.conf
|
|
|
|
|
|
|
|
To access the server:
|
2010-05-07 18:55:01 +00:00
|
|
|
redis-cli
|
2010-04-30 21:35:34 +00:00
|
|
|
EOS
|
2009-09-07 03:54:11 +00:00
|
|
|
end
|
2010-05-29 20:57:40 +00:00
|
|
|
|
|
|
|
def startup_plist
|
|
|
|
return <<-EOPLIST
|
|
|
|
<?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>
|
|
|
|
<true/>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>io.redis.redis-server</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>#{bin}/redis-server</string>
|
|
|
|
<string>#{etc}/redis.conf</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>UserName</key>
|
|
|
|
<string>#{`whoami`.chomp}</string>
|
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{var}</string>
|
2010-06-01 08:13:04 +00:00
|
|
|
<key>StandardErrorPath</key>
|
|
|
|
<string>#{var}/log/redis.log</string>
|
|
|
|
<key>StandardOutPath</key>
|
|
|
|
<string>#{var}/log/redis.log</string>
|
2010-05-29 20:57:40 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOPLIST
|
|
|
|
end
|
2009-09-07 03:54:11 +00:00
|
|
|
end
|