We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ref: https://stackoverflow.com/questions/73586208/can-you-install-disabled-homebrew-packages
By default homebrew-core is not tapped anymore. This is needed for brew edit to work though. Thus this small addition to the other answers.
Tap homebrew-core:
brew tap homebrew/core --force
Edit the formula with:
brew edit [email protected]
Remove the line:
disable! date: "2022-07-31", because: :unmaintained
And install it with:
HOMEBREW_NO_INSTALL_FROM_API=1 brew install [email protected]
If you don’t plan to edit more packages, untap and free the space from tap again (~1Gb):
brew untap homebrew/core
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Install lua5.1 on MacOS
By default homebrew-core is not tapped anymore. This is needed for brew edit to work though. Thus this small addition to the other answers.
Tap homebrew-core:
Edit the formula with:
Remove the line:
And install it with:
If you don’t plan to edit more packages, untap and free the space from tap again (~1Gb):
The text was updated successfully, but these errors were encountered: