Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/norskeld/homebrew-tap
Homebrew formulae for my projects.
https://github.com/norskeld/homebrew-tap
Last synced: about 1 month ago
JSON representation
Homebrew formulae for my projects.
- Host: GitHub
- URL: https://github.com/norskeld/homebrew-tap
- Owner: norskeld
- Created: 2022-10-26T19:24:58.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-25T10:38:04.000Z (9 months ago)
- Last Synced: 2024-03-25T12:01:58.348Z (9 months ago)
- Language: Ruby
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `𝑓` tap
Homebrew formulae for my projects.
## Available formulae
| Formula | Description |
| ---------- | ---------------------------------------------------------- |
| [diceware] | Rust crate and CLI for generating Diceware passphrases. |
| [rsx] | Micro CLI for interactive execution of npm & yarn scripts. |You can also check available formulae using the following snippet (although it requires [jq]):
```shell
brew tap-info norskeld/tap --json | jq -r '.[]|.formula_names[]'
```## Installation
Firstly, tap this repository:
```shell
brew tap norskeld/tap
```> **Note**
>
> Remember to check if your **Xcode** is up-to-date (see the output of `brew config` and `brew doctor`), because if not, you may have problems installing formulae (and other software/tools as well).After that you can install formulae.
## Usage
> **Note**
>
> To avoid problems, use fully-qualified names, e.g. `norskeld/tap/`. Otherwise you can install something else from `homebrew/core` tap, which has the priority when homebrew looks up for a formula to install.```bash
# Fine:
brew install# Better (fully-qualified name):
brew install norskeld/tap/
```[diceware]: https://github.com/norskeld/diceware
[rsx]: https://github.com/norskeld/rsx
[jq]: https://github.com/stedolan/jq