1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 14:26:46 +00:00
Files
Mole/Formula/clean-mac.rb
Tw93 6402ac3f4a Initial commit: Clean Mac v1.0.0
🧹 Deep Clean Your Mac with One Click

Features:
- Comprehensive cleanup for macOS cache and leftovers
- Apple Silicon optimizations
- Developer-friendly tool coverage
- Safe and transparent operation
- One-command installation
2025-09-23 14:35:26 +08:00

30 lines
862 B
Ruby

class CleanMac < Formula
desc "Clean Mac - Deep Clean Your Mac with One Click"
homepage "https://github.com/tw93/clean-mac"
url "https://github.com/tw93/clean-mac/archive/refs/tags/v1.0.0.tar.gz"
sha256 "PLACEHOLDER_SHA256"
license "MIT"
head "https://github.com/tw93/clean-mac.git", branch: "main"
def install
bin.install "clean.sh" => "clean"
end
test do
# Test that the script is executable and shows help
assert_match "Clean Mac", shell_output("#{bin}/clean --help", 0)
end
def caveats
<<~EOS
Clean Mac has been installed!
Usage:
clean - User-level cleanup (no password required)
clean --system - Deep system cleanup (password required)
clean --help - Show help message
For Apple Silicon Macs, the tool includes M-series specific optimizations.
EOS
end
end