homebrew-core/Formula/flume.rb

23 lines
540 B
Ruby
Raw Normal View History

require 'formula'
class Flume < Formula
homepage 'https://github.com/cloudera/flume'
2013-01-27 23:16:14 +00:00
url 'http://archive.cloudera.com/cdh/3/flume-0.9.4-cdh3u2.tar.gz'
version "0.9.4-cdh3u2"
2013-01-27 23:16:14 +00:00
sha1 '9f68c8205b61e43d35467b6d45f815f5e41239e9'
def flume_script
2013-01-27 23:16:14 +00:00
<<-EOS.undent
#!/bin/bash
export FLUME_CONF_DIR=${FLUME_CONF_DIR-#{libexec}/conf}
exec #{libexec}/bin/flume "$@"
2013-01-27 23:16:14 +00:00
EOS
end
def install
libexec.install %w[bin conf lib webapps]
libexec.install Dir["*.jar"]
2013-01-27 23:16:14 +00:00
(bin/"flume").write flume_script
end
end