homebrew-core/Formula/nifi.rb

26 lines
827 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.lua?path=/nifi/1.17.0/nifi-1.17.0-bin.zip"
mirror " https://archive.apache.org/dist/nifi/1.17.0/nifi-1.17.0-bin.zip"
sha256 "176eb0925493ce61eb3d8c3c0dcfa029a546b0014aeea731749823cbc069ecff"
license "Apache-2.0"
bottle do
sha256 cellar: :any_skip_relocation, all: "0a93be16bc08a85b354da5c2bafde64066571259839ac9d5f233b1e8264324c2"
end
depends_on "openjdk@11"
def install
libexec.install Dir["*"]
(bin/"nifi").write_env_script libexec/"bin/nifi.sh",
Language::Java.overridable_java_home_env("11").merge(NIFI_HOME: libexec)
end
test do
system bin/"nifi", "status"
end
end