blob: d3cfc4657c5769105f63899b3258f45d6feaa8d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class RedisTools < Formula
head 'https://github.com/antirez/redis-tools.git'
homepage 'https://github.com/antirez/redis-tools'
def install
# Architecture isn't detected correctly on 32bit Snow Leopard without help
ENV["OBJARCH"] = MacOS.prefer_64_bit? ? "-arch x86_64" : "-arch i386"
system "make"
bin.install ["redis-load", "redis-stat"]
end
end
|