homebrew-core/Formula/node-build.rb
Jason Karns 3f4a2b406f node-build 2.5.2
Closes #8530.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-01-06 09:51:40 +01:00

22 lines
603 B
Ruby

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