2010-01-12 21:50:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Riak < Formula
|
2013-09-20 21:26:24 +00:00
|
|
|
homepage 'http://basho.com/riak/'
|
2013-09-17 17:12:20 +00:00
|
|
|
url 'http://s3.amazonaws.com/downloads.basho.com/riak/1.4/1.4.2/osx/10.8/riak-1.4.2-OSX-x86_64.tar.gz'
|
|
|
|
version '1.4.2'
|
|
|
|
sha256 '2accc58a0ea2f7bd3edc31c934edb0bff6a1535994607fd6cec9c6bbefcf2abf'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2013-08-16 15:28:49 +00:00
|
|
|
depends_on :macos => :mountain_lion
|
|
|
|
depends_on :arch => :x86_64
|
2012-02-25 19:44:20 +00:00
|
|
|
|
2010-01-12 21:50:19 +00:00
|
|
|
def install
|
2013-08-16 15:28:49 +00:00
|
|
|
prefix.install Dir['*']
|
|
|
|
inreplace Dir["#{lib}/env.sh"] do |s|
|
|
|
|
s.change_make_var! "RUNNER_BASE_DIR", prefix
|
2012-02-25 19:35:03 +00:00
|
|
|
end
|
2010-01-12 21:50:19 +00:00
|
|
|
end
|
2011-01-12 22:11:17 +00:00
|
|
|
end
|