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