Homebrew Tap for Layerz applications.
| Cask | Description |
|---|---|
lcc |
macOS native terminal + file browser integrated app |
brew tap layerzapp/homebrew-tap
brew install --cask lccbrew update
brew upgrade --cask lccIf brew upgrade does not detect the new version, force a reinstall:
brew reinstall --cask lccbrew uninstall --cask lcc
brew untap layerzapp/homebrew-tapFollow these steps to release a new version of a cask:
Build and archive the app, then upload the .zip to a new GitHub release tagged vX.Y.Z.
shasum -a 256 LCC.zipEdit Casks/lcc.rb and update version and sha256:
cask "lcc" do
version "X.Y.Z"
sha256 "<new-sha256>"
# ...
endbrew install --cask Casks/lcc.rbgit add Casks/lcc.rb
git commit -m "Update LCC to vX.Y.Z"
git push origin mainAfter pushing, users can get the update via brew update && brew upgrade --cask lcc.