2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 03:54:11 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Redis < Formula
|
2012-01-12 00:16:57 +00:00
|
|
|
url 'http://redis.googlecode.com/files/redis-2.4.6.tar.gz'
|
2011-11-26 17:23:33 +00:00
|
|
|
head 'https://github.com/antirez/redis.git', :branch => 'unstable'
|
2011-02-04 05:56:18 +00:00
|
|
|
homepage 'http://redis.io/'
|
2012-01-12 00:16:57 +00:00
|
|
|
md5 '41d394074bcde762872ecb5506f35aee'
|
2009-12-11 05:47:51 +00:00
|
|
|
|
2011-09-04 23:05:01 +00:00
|
|
|
fails_with_llvm 'Fails with "reference out of range from _linenoise"', :build => 2334
|
2010-07-02 07:45:40 +00:00
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
def install
|
2011-03-07 01:28:36 +00:00
|
|
|
# Architecture isn't detected correctly on 32bit Snow Leopard without help
|
2011-03-18 17:30:47 +00:00
|
|
|
ENV["OBJARCH"] = MacOS.prefer_64_bit? ? "-arch x86_64" : "-arch i386"
|
2011-03-07 00:27:21 +00:00
|
|
|
|
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-04 09:01:39 +00:00
|
|
|
%w( redis-benchmark redis-cli redis-server redis-check-dump redis-check-aof ).each { |p|
|
|
|
|
bin.install "#{src}/#{p}" rescue nil
|
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"
|
2011-12-31 05:56:52 +00:00
|
|
|
plist_path.write startup_plist
|
|
|
|
plist_path.chmod 0644
|
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-09-03 17:12:08 +00:00
|
|
|
If this is your first install, automatically load on login with:
|
2011-02-27 08:07:58 +00:00
|
|
|
mkdir -p ~/Library/LaunchAgents
|
2011-12-31 05:56:52 +00:00
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2010-09-03 17:12:08 +00:00
|
|
|
|
2012-02-04 14:57:53 +00:00
|
|
|
If this is an upgrade and you already have the #{plist_path.basename} loaded:
|
2011-12-31 05:56:52 +00:00
|
|
|
launchctl unload -w ~/Library/LaunchAgents/#{plist_path.basename}
|
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2010-05-29 20:57:40 +00:00
|
|
|
|
|
|
|
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>
|
2011-12-31 05:56:52 +00:00
|
|
|
<string>#{plist_name}</string>
|
2010-05-29 20:57:40 +00:00
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2011-12-31 22:13:31 +00:00
|
|
|
<string>#{HOMEBREW_PREFIX}/bin/redis-server</string>
|
2010-05-29 20:57:40 +00:00
|
|
|
<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
|