homebrew-core/Formula/riak.rb

32 lines
975 B
Ruby
Raw Normal View History

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'
if Hardware.is_64_bit? and not build.build_32_bit?
url 'http://downloads.basho.com.s3-website-us-east-1.amazonaws.com/riak/1.2/1.2.1/osx/10.4/riak-1.2.1-osx-x86_64.tar.gz'
version '1.2.1-x86_64'
sha256 'aa7a99c8cd280a1529b97d690a1faaa0fb05211a87b077cf4f19cb0921cb492b'
else
url 'http://downloads.basho.com.s3-website-us-east-1.amazonaws.com/riak/1.2/1.2.1/osx/10.4/riak-1.2.1-osx-i386.tar.gz'
version '1.2.1-i386'
sha256 'a5acbdd1f0a7095557681713158bbc898e7c6f47128bd200bca3840c68aa640a'
end
2010-10-12 15:43:12 +00:00
2013-01-09 05:32:45 +00:00
skip_clean 'libexec'
option '32-bit'
2012-02-25 19:44:20 +00:00
2010-01-12 21:50:19 +00:00
def install
libexec.install Dir['*']
# 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
bin.install_symlink Dir["#{libexec}/bin/*"]
2010-01-12 21:50:19 +00:00
end
end