homebrew-core/Formula/deno.rb

67 lines
2.3 KiB
Ruby

class Deno < Formula
desc "Secure runtime for JavaScript and TypeScript"
homepage "https://deno.land/"
url "https://github.com/denoland/deno/releases/download/v1.3.3/deno_src.tar.gz"
sha256 "f378d81b193db153dba3f8ee142ca5407a3cf444a08cebff67773a336efc8b84"
license "MIT"
bottle do
cellar :any_skip_relocation
sha256 "528e3075635976785eb449baf85364b0498fd412670997456c155d971b63f9c6" => :catalina
sha256 "bae7502363e89dafd0fdefa4de800093a597236b39ea01caf97a4dfb9ec79b97" => :mojave
sha256 "78555b4595c443327ab3a2c0f75106e622839b10a73716409623b3c5c9aaccac" => :high_sierra
end
depends_on "llvm" => :build
depends_on "ninja" => :build
depends_on "rust" => :build
depends_on xcode: ["10.0", :build] # required by v8 7.9+
depends_on :macos # Due to Python 2 (see https://github.com/denoland/deno/issues/2893)
uses_from_macos "xz"
resource "gn" do
url "https://gn.googlesource.com/gn.git",
revision: "5ed3c9cc67b090d5e311e4bd2aba072173e82db9"
end
def install
# Build gn from source (used as a build tool here)
(buildpath/"gn").install resource("gn")
cd "gn" do
system "python", "build/gen.py"
system "ninja", "-C", "out/", "gn"
end
# env args for building a release build with our clang, ninja and gn
ENV["GN"] = buildpath/"gn/out/gn"
# build rusty_v8 from source
ENV["V8_FROM_SOURCE"] = "1"
# overwrite Chromium minimum sdk version of 10.15
ENV["FORCE_MAC_SDK_MIN"] = "10.13"
# build with llvm and link against system libc++ (no runtime dep)
ENV["CLANG_BASE_PATH"] = Formula["llvm"].prefix
ENV.remove "HOMEBREW_LIBRARY_PATHS", Formula["llvm"].opt_lib
cd "cli" do
system "cargo", "install", "-vv", *std_cargo_args
end
# Install bash and zsh completion
output = Utils.safe_popen_read("#{bin}/deno", "completions", "bash")
(bash_completion/"deno").write output
output = Utils.safe_popen_read("#{bin}/deno", "completions", "zsh")
(zsh_completion/"_deno").write output
end
test do
(testpath/"hello.ts").write <<~EOS
console.log("hello", "deno");
EOS
assert_match "hello deno", shell_output("#{bin}/deno run hello.ts")
assert_match "console.log",
shell_output("#{bin}/deno run --allow-read=#{testpath} https://deno.land/std@0.50.0/examples/cat.ts " \
"#{testpath}/hello.ts")
end
end