diff --git a/README.md b/README.md index df5a812f75..dc1d418c73 100644 --- a/README.md +++ b/README.md @@ -260,6 +260,11 @@ or from GitHub `master` branch ## Using HomeBrew +Updated formulae for `HomeBrew` are maintained in `develop` branch under the `helper/homebrew` directory. + +- `stable` formulae installs the package from `master` branch. +- `develop` formulae installs the package from `develop` branch. + ### Stable Version with HomeBrew ```console diff --git a/helper/homebrew/develop/proxy.rb b/helper/homebrew/develop/proxy.rb index e4b30649c5..99a480e819 100644 --- a/helper/homebrew/develop/proxy.rb +++ b/helper/homebrew/develop/proxy.rb @@ -4,7 +4,7 @@ class Proxy < Formula desc "⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on Network monitoring, controls & Application development, testing, debugging." homepage "https://github.com/abhinavsingh/proxy.py" - url "https://github.com/abhinavsingh/proxy.py/archive/develop.zip" + url "https://github.com/abhinavsingh/proxy.py.git", :using => :git, :branch => "develop" version "develop" depends_on "python@3.10" diff --git a/helper/homebrew/stable/proxy.rb b/helper/homebrew/stable/proxy.rb index c91be85cc9..7761ac62fd 100644 --- a/helper/homebrew/stable/proxy.rb +++ b/helper/homebrew/stable/proxy.rb @@ -4,9 +4,8 @@ class Proxy < Formula desc "⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on Network monitoring, controls & Application development, testing, debugging." homepage "https://github.com/abhinavsingh/proxy.py" - url "https://github.com/abhinavsingh/proxy.py/archive/master.zip" - sha256 "715687cebd451285d266f29d6509a64becc93da21f61ba9b4414e7dc4ecaaeed" - version "2.3.1" + url "https://github.com/abhinavsingh/proxy.py.git", :using => :git, :branch => "master" + version "stable" depends_on "python@3.10"