16 lines
558 B
Ruby
16 lines
558 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/Skydust/MacOS-Clear-script.git"
|
|
# Specify the branch or tag to use for the installation
|
|
head "https://gitea.skydust.fr/Skydust/MacOS-Clear-script.git", branch: "master"
|
|
version "1.1.1"
|
|
|
|
|
|
def install
|
|
mv "Clear.sh", "clearscript"
|
|
# Install the script to the appropriate location
|
|
bin.install "clearscript"
|
|
end
|
|
end |