homebrew-core/Formula/hiredis.rb

15 lines
428 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Hiredis < Formula
homepage 'https://github.com/antirez/hiredis'
2012-08-30 19:42:09 +00:00
url 'https://github.com/antirez/hiredis/tarball/v0.11.0'
sha1 '70ad9dd6d946563925ea8aecd64882a0f046ab05'
def install
# Architecture isn't detected correctly on 32bit Snow Leopard without help
2011-03-18 17:30:47 +00:00
ENV["OBJARCH"] = MacOS.prefer_64_bit? ? "-arch x86_64" : "-arch i386"
system "make", "install", "PREFIX=#{prefix}"
end
end