aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorelliottcable2009-12-10 21:46:03 -0800
committerMax Howell2010-01-13 15:04:01 +0000
commit5b29e7884c175b89792016c8db902adb24e72079 (patch)
treed63ec19433c224866ba184664a76551daf512975 /Library/Formula
parentc2adb156c7b3a286d277dc340e04c2916e9c2ad0 (diff)
downloadhomebrew-5b29e7884c175b89792016c8db902adb24e72079.tar.bz2
Updated Redis to 1.1.91-beta, and added a note about path problems
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/redis.rb12
1 files changed, 9 insertions, 3 deletions
diff --git a/Library/Formula/redis.rb b/Library/Formula/redis.rb
index 6252109b8..3aae01421 100644
--- a/Library/Formula/redis.rb
+++ b/Library/Formula/redis.rb
@@ -136,9 +136,10 @@ shareobjectspoolsize 1024
EOS
class Redis <Formula
- url 'http://redis.googlecode.com/files/redis-1.02.tar.gz'
+ url 'http://redis.googlecode.com/files/redis-1.1.91-beta.tar.gz'
+ version '1.1.91-beta'
homepage 'http://code.google.com/p/redis/'
- sha1 '1739e2529422b991b42d0b9e3fd8da2fadc24796'
+ sha1 '9a5de92aa57c2c70e1d168a4e985ec7d79dae882'
def install
system "make"
@@ -146,8 +147,13 @@ class Redis <Formula
(share+'redis').install %w( utils client-libraries doc )
bin.install %w( redis-benchmark redis-cli redis-server )
- # set up the conf file
+ # set up the conf file
(etc+'redis.conf').write REDIS_CONF
+
+ # FIXME: You get “* Can't chdir to '/var/db/redis/': No such file or
+ # directory” when running with this conf. We need to either make
+ # that directory, or (better yet) stop breaking the rules, and work
+ # inside the Homebrew prefix.
end
def caveats