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-03-29 17:12:09 +00:00
|
|
|
url 'http://redis.googlecode.com/files/redis-1.2.6.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-03-29 17:12:09 +00:00
|
|
|
sha1 'c71aef0b3f31acb66353d86ba57dd321b541043f'
|
2009-12-11 05:47:51 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-30 21:35:34 +00:00
|
|
|
ENV.gcc_4_2 # Breaks with LLVM
|
|
|
|
system "make"
|
|
|
|
|
|
|
|
%w( redis-benchmark redis-cli redis-server redis-stat redis-check-dump ).each { |p|
|
|
|
|
# Some of these commands are only in 1.2.x, some only in head
|
|
|
|
bin.install p rescue nil
|
|
|
|
}
|
|
|
|
|
2009-12-11 06:19:35 +00:00
|
|
|
%w( run db/redis log ).each do |path|
|
2010-02-14 01:17:25 +00:00
|
|
|
(var+path).mkpath
|
2009-12-11 06:19:35 +00:00
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
|
|
|
etc.install "redis.conf"
|
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
|
|
|
|
To start redis:
|
|
|
|
redis-server #{etc}/redis.conf
|
|
|
|
|
|
|
|
To access the server:
|
|
|
|
redis-client
|
|
|
|
EOS
|
2009-09-07 03:54:11 +00:00
|
|
|
end
|
|
|
|
end
|