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.0/package.tar.gz"
|
|
sha256 "ae79e1289bace80a39867df00cfc6c7b5572e77346f0e73753159b797b14414a"
|
|
|
|
def install
|
|
mv "Clear.sh", "clearscript"
|
|
# Install the script to the appropriate location
|
|
bin.install "clearscript"
|
|
end
|
|
end |