aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/redis.rb
blob: 3b707d6f6ab9dbf4928415e559cac0a8bb09980d (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
require 'formula'

class Redis <Formula
  url 'http://redis.googlecode.com/files/redis-1.2.6.tar.gz'
  homepage 'http://code.google.com/p/redis/'
  sha1 'c71aef0b3f31acb66353d86ba57dd321b541043f'

  def install
    %w( run db/redis log ).each do |path|
      (var+path).mkpath
    end

    ENV.gcc_4_2
    system "make"
    bin.install %w( redis-benchmark redis-cli redis-server redis-stat )
    
    # 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
    
    etc.install "redis.conf"
  end

  def caveats
    "To start redis: $ redis-server #{etc}/redis.conf"
  end
end