2010-01-12 21:50:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Riak < Formula
|
2011-10-21 03:41:52 +00:00
|
|
|
homepage 'http://wiki.basho.com/Riak.html'
|
2013-08-16 15:28:49 +00:00
|
|
|
url 'http://s3.amazonaws.com/downloads.basho.com/riak/1.4/1.4.1/osx/10.8/riak-1.4.1-OSX-x86_64.tar.gz'
|
|
|
|
version '1.4.1'
|
|
|
|
sha256 'ebe68fb9fa2ee87636d2e8bb38d3a8e805c61edbd329fdf648e68933aae79668'
|
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
|