class NodeBuild < Formula desc "Install NodeJS versions" homepage "https://github.com/nodenv/node-build" url "https://github.com/nodenv/node-build/archive/v4.6.8.tar.gz" sha256 "e3304dfd4840b3845472ea328f93b556a084aa1a89411dd953541c30f8e7f8b1" head "https://github.com/nodenv/node-build.git" bottle :unneeded depends_on "autoconf" depends_on "openssl@1.1" depends_on "pkg-config" def install ENV["PREFIX"] = prefix system "./install.sh" end test do system "#{bin}/node-build", "--definitions" end end