13 lines
519 B
Ruby
13 lines
519 B
Ruby
class Clearscript < Formula
|
|
desc "A script to clear multiples caches and useless macos files"
|
|
homepage "https://gitea.skydust.fr/Skydust/MacOS-Clear-script"
|
|
# Specify the URL of the Git repository
|
|
url "https://gitea.skydust.fr/api/packages/Skydust/generic/brew-clearscript/2.0.3/package.tar.gz"
|
|
sha256 "f8bdf8c68c647f67d6c3b449d28973e96319d8fc113894e61fef513631732305"
|
|
|
|
def install
|
|
mv "Clear.sh", "clearscript"
|
|
# Install the script to the appropriate location
|
|
bin.install "clearscript"
|
|
end
|
|
end |