homebrew-core/Formula/nifi.rb
2017-05-09 23:08:00 +02:00

23 lines
604 B
Ruby

class Nifi < Formula
desc "Easy to use, powerful, and reliable system to process and distribute data."
homepage "https://nifi.apache.org"
url "https://www.apache.org/dyn/closer.cgi?path=/nifi/1.2.0/nifi-1.2.0-bin.tar.gz"
sha256 "9379dfbba1ec502f9d1e083a190fb80b62283265f00c6d55f0724de7a5084cbe"
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install Dir["*"]
ENV["NIFI_HOME"] = libexec
bin.install libexec/"bin/nifi.sh" => "nifi"
bin.env_script_all_files libexec/"bin/", :NIFI_HOME => libexec
end
test do
system bin/"nifi", "status"
end
end