Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gromgit/homebrew-core-aarch64_linux
Experimental Homebrew support for ARM64 Linux.
https://github.com/gromgit/homebrew-core-aarch64_linux
Last synced: 3 months ago
JSON representation
Experimental Homebrew support for ARM64 Linux.
- Host: GitHub
- URL: https://github.com/gromgit/homebrew-core-aarch64_linux
- Owner: gromgit
- License: bsd-2-clause
- Created: 2021-12-14T10:04:06.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T17:27:21.000Z (4 months ago)
- Last Synced: 2024-09-06T22:35:44.839Z (4 months ago)
- Language: Ruby
- Homepage:
- Size: 534 MB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Audit: audit_exceptions/cert_error_allowlist.json
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Experimental support for Homebrew Core on ARM64 Linux
This repo mirrors the main Homebrew core repo as much as possible, only making concessions to stuff that can no longer be built under ARM64 Linux. I'll provide bottles to the best of my ability.
## How do I install these formulae?
From a **working** Homebrew installation, you first need to change the GitHub remote for the core repo:
```
# Stop `brew` from complaining about the unusual repo URL
export HOMEBREW_CORE_GIT_REMOTE=https://github.com/gromgit/homebrew-core-aarch64_linux
rm -fr $(brew --repo homebrew/core)
brew tap homebrew/core https://github.com/gromgit/homebrew-core-aarch64_linux
```
Then just `brew install ` as usual.You should also add `export HOMEBREW_CORE_GIT_REMOTE=https://github.com/gromgit/homebrew-core-aarch64_linux` to your shell's startup file, otherwise `brew doctor` will warn you:
```
Warning: Suspicious https://github.com/Homebrew/homebrew-core git origin remote found.
```## Why is XYZ not the latest version?
Any or all of the following:
1. I don't have a Github-scale infrastructure to build ARM64 Linux bottles, and since there are easily a few dozen new Homebrew releases each day, it may take a while for me to catch up.
2. The latest XYZ may not be available on ARM64 Linux--this will be noted in the Caveats section of `brew info XYZ`.## Hey, something's not working right.
If you find any problems, please [open an issue here](https://github.com/gromgit/homebrew-core-aarch64_linux/issues/new/choose). Do **NOT** file an issue in the main Homebrew core repo, they have nothing to do with this.
## It's just not my cup of tea. How do I revert to the original Homebrew core?
```
unset HOMEBREW_CORE_GIT_REMOTE
rm -fr $(brew --repo homebrew/core)
brew tap homebrew/core
```## I'm looking for the original Homebrew README. Where is it?
[Here.](https://github.com/Homebrew/homebrew-core/blob/master/README.md)