aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hiredis.rb
blob: dd7d0aa72eb89d49869ff981f1834ba3cbbb379c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Hiredis < Formula
  homepage 'https://github.com/redis/hiredis'
  url 'https://github.com/redis/hiredis/archive/v0.11.0.tar.gz'
  sha1 '694b6d7a6e4ea7fb20902619e9a2423c014b37c1'

  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", "install", "PREFIX=#{prefix}"
  end
end