103 lines
3.8 KiB
Ruby
103 lines
3.8 KiB
Ruby
class NodeAT16 < Formula
|
|
desc "Platform built on V8 to build network applications"
|
|
homepage "https://nodejs.org/"
|
|
url "https://nodejs.org/dist/v16.18.0/node-v16.18.0.tar.xz"
|
|
sha256 "fcfe6ad2340f229061d3e81a94df167fe3f77e01712dedc0144a0e7d58e2c69b"
|
|
license "MIT"
|
|
|
|
livecheck do
|
|
url "https://nodejs.org/dist/"
|
|
regex(%r{href=["']?v?(16(?:\.\d+)+)/?["' >]}i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "e4cfcdc723eaf05371a984e06598318b69e2d21ce818461efa6eee66ce77a9c1"
|
|
sha256 cellar: :any, arm64_big_sur: "764f9e5390ac69898e749601ebfd16e6d3997e0adedf1ae101e15f39de5c9c99"
|
|
sha256 cellar: :any, monterey: "3c445a1e9f7639189f143dbb5e9e70b4a77122557facf61b26e7a5f681ce73a8"
|
|
sha256 cellar: :any, big_sur: "2eb86f1641e9b43db505a34717268eca6959dce6ff516b46889d2c3a97a69a08"
|
|
sha256 cellar: :any, catalina: "17cd3da257f184fbf463fba21f0cf09f3c2c1301b65dacf4e20aed1d267f8d32"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "bfa18590fe9a14b9c1061e1ed5b8292b89b2e5e4baf25a9bb42157430827d357"
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "python@3.10" => :build
|
|
depends_on "brotli"
|
|
depends_on "c-ares"
|
|
depends_on "icu4c"
|
|
depends_on "libnghttp2"
|
|
depends_on "libuv"
|
|
depends_on "openssl@1.1"
|
|
|
|
uses_from_macos "python", since: :catalina
|
|
uses_from_macos "zlib"
|
|
|
|
fails_with :clang do
|
|
build 1099
|
|
cause "Node requires Xcode CLT 11+"
|
|
end
|
|
|
|
fails_with gcc: "5"
|
|
|
|
def install
|
|
python3 = "python3.10"
|
|
# make sure subprocesses spawned by make are using our Python 3
|
|
ENV["PYTHON"] = which(python3)
|
|
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--with-intl=system-icu
|
|
--shared-libuv
|
|
--shared-nghttp2
|
|
--shared-openssl
|
|
--shared-zlib
|
|
--shared-brotli
|
|
--shared-cares
|
|
--shared-libuv-includes=#{Formula["libuv"].include}
|
|
--shared-libuv-libpath=#{Formula["libuv"].lib}
|
|
--shared-nghttp2-includes=#{Formula["libnghttp2"].include}
|
|
--shared-nghttp2-libpath=#{Formula["libnghttp2"].lib}
|
|
--shared-openssl-includes=#{Formula["openssl@1.1"].include}
|
|
--shared-openssl-libpath=#{Formula["openssl@1.1"].lib}
|
|
--shared-brotli-includes=#{Formula["brotli"].include}
|
|
--shared-brotli-libpath=#{Formula["brotli"].lib}
|
|
--shared-cares-includes=#{Formula["c-ares"].include}
|
|
--shared-cares-libpath=#{Formula["c-ares"].lib}
|
|
--openssl-use-def-ca-store
|
|
]
|
|
system python3, "configure.py", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
def post_install
|
|
(lib/"node_modules/npm/npmrc").atomic_write("prefix = #{HOMEBREW_PREFIX}\n")
|
|
end
|
|
|
|
test do
|
|
path = testpath/"test.js"
|
|
path.write "console.log('hello');"
|
|
|
|
output = shell_output("#{bin}/node #{path}").strip
|
|
assert_equal "hello", output
|
|
output = shell_output("#{bin}/node -e 'console.log(new Intl.NumberFormat(\"en-EN\").format(1234.56))'").strip
|
|
assert_equal "1,234.56", output
|
|
|
|
output = shell_output("#{bin}/node -e 'console.log(new Intl.NumberFormat(\"de-DE\").format(1234.56))'").strip
|
|
assert_equal "1.234,56", output
|
|
|
|
# make sure npm can find node
|
|
ENV.prepend_path "PATH", opt_bin
|
|
ENV.delete "NVM_NODEJS_ORG_MIRROR"
|
|
assert_equal which("node"), opt_bin/"node"
|
|
assert_predicate bin/"npm", :exist?, "npm must exist"
|
|
assert_predicate bin/"npm", :executable?, "npm must be executable"
|
|
npm_args = ["-ddd", "--cache=#{HOMEBREW_CACHE}/npm_cache", "--build-from-source"]
|
|
system "#{bin}/npm", *npm_args, "install", "npm@latest"
|
|
system "#{bin}/npm", *npm_args, "install", "ref-napi"
|
|
assert_predicate bin/"npx", :exist?, "npx must exist"
|
|
assert_predicate bin/"npx", :executable?, "npx must be executable"
|
|
assert_match "< hello >", shell_output("#{bin}/npx --yes cowsay hello")
|
|
end
|
|
end
|