From 858384a500b61efc88dd6958267c813ac63d018b Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Tue, 23 Apr 2024 21:16:45 +0300 Subject: [PATCH] Update firefox.rb --- Formula/firefox.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Formula/firefox.rb b/Formula/firefox.rb index 30340bb..aafb913 100644 --- a/Formula/firefox.rb +++ b/Formula/firefox.rb @@ -1,18 +1,19 @@ class Firefox < Formula - desc "you know" + desc "You know" homepage "https://mozilla.org" url "https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py" version "1.2" sha256 "348d4dd6222fa5a5a796f4edc51228905a7f0a67f5301eb054e2f24640f76e82" - license "" + license "MIT" - depends_on "mercurial" - depends_on "git-cinnabar" - - uses_from_macos "python" + depends_on "git" => :build + depends_on "git-cinnabar" => :build + depends_on "mercurial" => :build + depends_on "python@3.11" => :build + uses_from_macos "curl" => :build def install - system "python3", "bootstrap.py", "--vcs=git" + system "python3", "bootstrap.py", "--vcs=git", "--no-interactive" system "hg", "up", "-C", "central" system "./mach", "build" end