homebrew-core/Formula/redis.rb
Abdul-Jabbar Shalabi 270a16a1e8 updated Redis formula from 1.2.2 to 1.2.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-03-02 14:51:07 -08:00

29 lines
704 B
Ruby

require 'formula'
class Redis <Formula
url 'http://redis.googlecode.com/files/redis-1.2.3.tar.gz'
homepage 'http://code.google.com/p/redis/'
sha1 'a1262e30e3fa090c62ae6dc212a75e8106ad0d6f'
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 )
# 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