mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 19:09:43 +00:00
30 lines
908 B
Ruby
30 lines
908 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 "8274af48615205ab3ce4b75c9b2e898a53b4d49972cd7757fe8b6fe27603a5ab"
|
|
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 |