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'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2012-08-13 00:03:17 +00:00
|
|
|
if Hardware.is_64_bit? and not build.build_32_bit?
|
2012-08-07 17:42:21 +00:00
|
|
|
url 'http://s3.amazonaws.com/downloads.basho.com/riak/1.2/1.2.0/osx/10.4/riak-1.2.0-osx-x86_64.tar.gz'
|
|
|
|
version '1.2.0-x86_64'
|
|
|
|
sha256 '5681d37377a5efe3553efc2efc1fce81e26168252dc130f7b40d2b6cfa1da9e4'
|
2012-02-25 19:35:03 +00:00
|
|
|
else
|
2012-08-07 17:42:21 +00:00
|
|
|
url 'http://s3.amazonaws.com/downloads.basho.com/riak/1.2/1.2.0/osx/10.4/riak-1.2.0-osx-i386.tar.gz'
|
|
|
|
version '1.2.0-i386'
|
|
|
|
sha256 '6af3497fe0918809a8dfcb0e63d70a60b782a66645a59db7dd3e76391f63b33f'
|
2012-02-25 19:35:03 +00:00
|
|
|
end
|
2010-10-12 15:43:12 +00:00
|
|
|
|
2012-02-25 19:35:03 +00:00
|
|
|
skip_clean :all
|
2011-10-24 19:35:52 +00:00
|
|
|
|
2012-08-13 00:03:17 +00:00
|
|
|
option '32-bit'
|
2012-02-25 19:44:20 +00:00
|
|
|
|
2010-01-12 21:50:19 +00:00
|
|
|
def install
|
2012-02-25 19:35:03 +00:00
|
|
|
libexec.install Dir['*']
|
2010-04-26 17:39:57 +00:00
|
|
|
|
2012-02-25 19:35:03 +00:00
|
|
|
# The scripts don't dereference symlinks correctly.
|
|
|
|
# Help them find stuff in libexec. - @adamv
|
|
|
|
inreplace Dir["#{libexec}/bin/*"] do |s|
|
|
|
|
s.change_make_var! "RUNNER_SCRIPT_DIR", "#{libexec}/bin"
|
|
|
|
end
|
2011-01-12 22:11:17 +00:00
|
|
|
|
2012-02-25 19:35:03 +00:00
|
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
2010-01-12 21:50:19 +00:00
|
|
|
end
|
2011-01-12 22:11:17 +00:00
|
|
|
end
|