2010-06-04 13:37:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class RedisTools < Formula
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/antirez/redis-tools.git'
|
2010-11-14 20:34:06 +00:00
|
|
|
homepage 'https://github.com/antirez/redis-tools'
|
2010-06-04 13:37:59 +00:00
|
|
|
|
|
|
|
def install
|
2012-01-27 04:11:54 +00:00
|
|
|
# Architecture isn't detected correctly on 32bit Snow Leopard without help
|
|
|
|
ENV["OBJARCH"] = MacOS.prefer_64_bit? ? "-arch x86_64" : "-arch i386"
|
2010-06-04 13:37:59 +00:00
|
|
|
system "make"
|
|
|
|
bin.install ["redis-load", "redis-stat"]
|
|
|
|
end
|
|
|
|
end
|