blob: 0beb63ff5b4d5c0e40034ddc342b24b25d34d7d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
class Flume < Formula
url 'http://archive.cloudera.com/cdh/3/flume-0.9.4-cdh3u2.tar.gz'
homepage 'https://github.com/cloudera/flume'
sha1 '9f68c8205b61e43d35467b6d45f815f5e41239e9'
version "0.9.4-cdh3u2"
def flume_script
<<-EOS.undent
#!/bin/bash
export FLUME_CONF_DIR=${FLUME_CONF_DIR-#{libexec}/conf}
exec #{libexec}/bin/flume "$@"
EOS
end
def install
libexec.install %w[bin conf lib webapps]
libexec.install Dir["*.jar"]
bin.mkpath
(bin+"flume").write flume_script()
end
end
|