Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/justintime50/homebrew-formulas

My personal Homebrew tap housing formulas for all my Homebrew projects.
https://github.com/justintime50/homebrew-formulas

brew formula homebrew homebrew-formula homebrew-tap projects tap

Last synced: 22 days ago
JSON representation

My personal Homebrew tap housing formulas for all my Homebrew projects.

Awesome Lists containing this project

README

        

# Justintime50's Homebrew Tap

My personal Homebrew tap housing formulas for all my Homebrew projects.

[![Build](https://github.com/Justintime50/homebrew-formulas/workflows/build/badge.svg)](https://github.com/Justintime50/homebrew-formulas/actions)
[![Licence](https://img.shields.io/github/license/justintime50/homebrew-formulas)](LICENSE)

Showcase

[Homebrew](https://brew.sh) is a fantastic package manager for macOS and Linux. I release some of my projects via Homebrew as it is widely used and easy to deploy to. This tap is a "self hosted" collection of Homebrew packages. For specific details about a formula contained in this tap, visit that formula's homepage or see the table below.

This repos is completely automated and maintained via [Homebrew Releaser](https://github.com/Justintime50/homebrew-releaser). If you are looking for a way to publish your own Homebrew formula on your behalf, you should check it out!

## Usage

```bash
# Setup tap
brew tap justintime50/formulas

# Check the tap for available formulas
brew search justintime50/formulas
```

| Project | Description | Install |
| ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ----------------------------------- |
| [alchemist](https://github.com/Justintime50/alchemist) | Update, backup, and administer your Homebrew or Chocolatey instances | `brew install alchemist` |
| [burn-notice](https://github.com/Justintime50/burn-notice) | Returning a machine to it, got let go, or got burned? delete your data with one | `brew install burn-notice` |
| [clienv](https://github.com/Justintime50/clienv) | Source your environment variables from env when running cli commands | `brew install clienv` |
| [cronic](https://github.com/justincase/cronic) | Cure for Cron's chronic email problem | `brew install cronic` |
| [easypost-cli](https://github.com/Justintime50/easypost-cli) | Easypost api on the cli | `brew install easypost-cli` |
| [onepass](https://github.com/Justintime50/onepass) | 1password cli wrapper for easy credential retrieval | `brew install onepass` |
| [secure-browser-kiosk](https://github.com/Justintime50/secure-browser-kiosk) | Restart Chrome in incognito mode by prompting the user if | `brew install secure-browser-kiosk` |
| [srvinfra](https://github.com/Justintime50/srvinfra) | Is a tool to deploy, update, and maintain services and websites on a se | `brew install srvinfra` |

## Development

```bash
# Audit a formula (lint)
brew audit --strict --online

# Test a formula
brew test

# Create a tar
tar -czf name-of-tar.tgz path/to/content

# Get the checksum of an archive
shasum -a 256 name-of-tar.tgz
```