67 lines
2.3 KiB
Ruby
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.2/deno_src.tar.gz"
|
|
sha256 "4476a76fed7f23aad553883f041bf3b7ebb9ab649334f734e90137fadfda5932"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "11668d21a11c6b68fa97ef5b3b5daf8874ed796cb02fb42616ab5e6cbe80438a" => :catalina
|
|
sha256 "05913d1308eb0786688e9b8b1e45a9ad3acfdaf1fe4253a9aa3ff71821096f2f" => :mojave
|
|
sha256 "b022dbaf8b5168d3dc01722851e6fb0f211065f3a87e1db920f882395554df4e" => :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
|