blob: 69d1447534e948f9852f8c44bcd49027eb5a5bdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  | 
require 'formula'
class Voldemort < Formula
  homepage 'http://project-voldemort.com/'
  url 'https://github.com/downloads/voldemort/voldemort/voldemort-0.90.1.tar.gz'
  sha1 '8a8d33e3a5904f3aeea66bc0503fb12e449e0969'
  skip_clean 'libexec/config'
  def install
    system "ant"
    libexec.install %w(bin lib dist contrib)
    libexec.install "config" => "config-examples"
    (libexec/"config").mkpath
    # Write shim scripts for all utilities
    bin.write_exec_script Dir["#{libexec}/bin/*.sh"]
  end
  def caveats; <<-EOS.undent
    You will need to set VOLDEMORT_HOME to:
      #{libexec}
    Config files should be placed in:
      #{libexec}/config
    or you can set VOL_CONF_DIR to a more reasonable path.
    EOS
  end
end
  |