diff options
| author | Gordon Tillman | 2011-11-12 15:08:14 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2011-11-12 14:38:30 -0800 |
| commit | 55f18c8e5e32c4512163747091a26b0807c1065b (patch) | |
| tree | c0599021183be719f86b680df7b830120cd37bae /Library/Formula | |
| parent | 4f2883dc4a3594a93d991f6b8cf9521d1c705f27 (diff) | |
| download | homebrew-55f18c8e5e32c4512163747091a26b0807c1065b.tar.bz2 | |
riak - link search-cmd
Updated formula to link search-cmd into /usr/local/bin along with
the riak and riak-admin commands. Riak's search capabilities are
now included with the standard Riak installation and the
search-cmd is used to install search commit hooks and manage
bucket schema.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/riak.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/riak.rb b/Library/Formula/riak.rb index 311475a11..573a09f4b 100644 --- a/Library/Formula/riak.rb +++ b/Library/Formula/riak.rb @@ -23,7 +23,7 @@ class Riak < Formula def install ENV.deparallelize system "make all rel" - %w(riak riak-admin).each do |file| + %w(riak riak-admin search-cmd).each do |file| inreplace "rel/riak/bin/#{file}", /^RUNNER_BASE_DIR=.+$/, "RUNNER_BASE_DIR=#{libexec}" end @@ -32,6 +32,7 @@ class Riak < Formula 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 |
