blob: 49aac456a486c5edc725e7665242136eb97d1580 (
plain)
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
  | 
require 'formula'
class Redis <Formula
  url 'https://github.com/antirez/redis/tarball/v2.0.4-stable'
  head 'git://github.com/antirez/redis.git'
  homepage 'http://redis.io/'
  sha1 '48300996d3d34cccf076330859f37248fa5f6c1b'
  version '2.0.4'
  def install
    fails_with_llvm "Breaks with LLVM"
    # Head and stable have different code layouts
    src = File.exists?('src/Makefile') ? 'src' : '.'
    system "make -C #{src}"
    %w( redis-benchmark redis-cli redis-server redis-check-dump redis-check-aof ).each { |p|
      bin.install "#{src}/#{p}" rescue nil
    }
    %w( run db/redis log ).each { |p| (var+p).mkpath }
    # 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
    doc.install Dir["doc/*"]
    etc.install "redis.conf"
    (prefix+'io.redis.redis-server.plist').write startup_plist
  end
  def caveats
    <<-EOS.undent
    If this is your first install, automatically load on login with:
        cp #{prefix}/io.redis.redis-server.plist ~/Library/LaunchAgents
        launchctl load -w ~/Library/LaunchAgents/io.redis.redis-server.plist
    If this is an upgrade and you already have the io.redis.redis-server.plist loaded:
        launchctl unload -w ~/Library/LaunchAgents/io.redis.redis-server.plist
        cp #{prefix}/io.redis.redis-server.plist ~/Library/LaunchAgents
        launchctl load -w ~/Library/LaunchAgents/io.redis.redis-server.plist
      To start redis manually:
        redis-server #{etc}/redis.conf
      To access the server:
        redis-cli
    EOS
  end
  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>
    <key>StandardErrorPath</key>
    <string>#{var}/log/redis.log</string>
    <key>StandardOutPath</key>
    <string>#{var}/log/redis.log</string>
  </dict>
</plist>
    EOPLIST
  end
end
  |