ecb56e6bb5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
57 lines
1.4 KiB
Ruby
57 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class Riak < Formula
|
|
url 'http://downloads.basho.com/riak/riak-1.0.3/riak-1.0.3.tar.gz'
|
|
homepage 'http://wiki.basho.com/Riak.html'
|
|
md5 '433d2cb0c6eba0b6d374d9d37f7f54fe'
|
|
|
|
head 'https://github.com/basho/riak.git'
|
|
|
|
skip_clean 'libexec/log'
|
|
skip_clean 'libexec/log/sasl'
|
|
skip_clean 'libexec/data'
|
|
skip_clean 'libexec/data/dets'
|
|
skip_clean 'libexec/data/ring'
|
|
|
|
depends_on 'erlang'
|
|
|
|
# Enable use of Erlang R14B04
|
|
# This was fixed upstream, so when updating the version of Riak
|
|
# check if this fix is already in place.
|
|
def patches; DATA; end
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
system "make all rel"
|
|
%w(riak riak-admin search-cmd).each do |file|
|
|
inreplace "rel/riak/bin/#{file}", /^RUNNER_BASE_DIR=.+$/, "RUNNER_BASE_DIR=#{libexec}"
|
|
end
|
|
|
|
# Install most files to private libexec, and link in the binaries.
|
|
libexec.install Dir["rel/riak/*"]
|
|
bin.mkpath
|
|
ln_s libexec+'bin/riak', bin
|
|
ln_s libexec+'bin/riak-admin', bin
|
|
ln_s libexec+'bin/search-cmd', bin
|
|
|
|
(prefix + 'data/ring').mkpath
|
|
(prefix + 'data/dets').mkpath
|
|
|
|
# Install man pages
|
|
man1.install Dir["doc/man/man1/*"]
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/rebar.config b/rebar.config
|
|
index ee81bfc..31d2fae 100644
|
|
--- a/rebar.config
|
|
+++ b/rebar.config
|
|
@@ -1,6 +1,6 @@
|
|
{sub_dirs, ["rel"]}.
|
|
|
|
-{require_otp_vsn, "R14B0[23]"}.
|
|
+{require_otp_vsn, "R14B0[234]"}.
|
|
|
|
{cover_enabled, true}.
|
|
|