Skip to content

MrDemonWolf/homebrew-den

Repository files navigation

Homebrew Den

A Homebrew tap for CLI tools and macOS apps by MrDemonWolf, Inc.

Quick Start

brew tap mrdemonwolf/den
brew install <formula>          # CLI tools
brew install --cask <name>      # macOS apps

Available Formulae

Formula Version Stability Description
iconwolf 0.0.6 Alpha Cross-platform app icon generator for Expo/React Native projects

Available Casks

Cask Description
wolfwave macOS menu bar app that bridges Apple Music with Twitch, Discord, and stream overlays

Documentation Site

Browse the full documentation at mrdemonwolf.github.io/homebrew-den.

The site auto-rebuilds on every push to main and includes:

  • Dark/light theme with system preference detection
  • Cmd+K / Ctrl+K search palette for quick package lookup
  • Per-formula detail pages with install commands, metadata, caveats, and version history
  • Stability badges (Alpha, Beta, RC, Pre-release) based on semver and GitHub Releases

To build locally:

npm install                # Install dependencies (first time only)
bash scripts/build-site.sh
open _site/index.html

Adding a New Cask

Create a file at Casks/<name>.rb using this template:

cask "<name>" do
  version "<version>"
  sha256 "<sha256>"

  url "https://github.com/<owner>/<repo>/releases/download/v#{version}/<name>-#{version}.dmg"
  name "<App Name>"
  desc "<Short description>"
  homepage "https://github.com/<owner>/<repo>"

  app "<App Name>.app"
end

Generate the SHA-256 checksum:

shasum -a 256 <name>-<version>.dmg

Test the cask locally before pushing:

brew install --cask Casks/<name>.rb

Contributing

Running Tests

Tests run automatically on every push and PR via CI. To run locally:

npm install
npm test

License

MIT — © 2026 MrDemonWolf, Inc.

Releases

No releases published

Packages

 
 
 

Contributors