答案 0 :(得分:3)
答案 1 :(得分:1)
截至 2021 年 5 月,Bintray is no longre available 和 Bottle 在 GitHub 上托管 https://github.com/orgs/Homebrew/packages
历史和推荐阅读:
有一篇出色的 2019 年背景文章描述了如何
Maintain your own Homebrew repository, with binary bottles,它解释了 Bintray 托管的瓶子的 URL 模式。即使 Bintray 不再有效,在处理较旧的公式和水龙头时仍然很有价值。
URL 模式通常与 https://dl.bintray.com/<user>/bottles-<tap>
类似。
到 2020 年,从 Release 2.5.2 开始,uploading bottles to GitHub Releases 开始受到支持。
到 2021 年,从 Release 3.1.0 起,GitHub Releases became the default location。
答案 2 :(得分:-2)
您可以在源代码中找到每个软件包下载位置的完整列表:
https://github.com/Homebrew/homebrew-core/tree/master/Formula
例如,如果您要安装boost,请查看boost.rb
并找到:
desc "Collection of portable C++ source libraries"
homepage "https://www.boost.org/"
url "https://downloads.sourceforge.net/project/boost/boost/1.61.0/boost_1_61_0.tar.bz2"
sha256 "a547bd06c2fd9a71ba1d169d9cf0339da7ebf4753849a8f7d6fdb8feee99b640"