2022-01-10 11:09:34 -08:00
|
|
|
class FileScripts < Formula
|
2021-12-20 09:16:56 -08:00
|
|
|
desc "Various scripts for performing file-related operations such as editing and deleting"
|
2022-01-10 11:09:34 -08:00
|
|
|
homepage "https://github.com/etorres4/file-scripts"
|
2021-12-20 09:16:56 -08:00
|
|
|
url "https://github.com/etorres4/file-scripts",
|
|
|
|
:using => :git
|
2021-12-25 21:00:26 -08:00
|
|
|
version "0.9.2"
|
2021-12-20 09:16:56 -08:00
|
|
|
|
2022-01-10 11:09:34 -08:00
|
|
|
depends_on "python@3.10"
|
|
|
|
depends_on "fd"
|
|
|
|
depends_on "fzf"
|
2021-12-20 09:16:56 -08:00
|
|
|
|
|
|
|
def install
|
2022-01-10 11:09:34 -08:00
|
|
|
system Formula["python@3.10"].opt_bin/"python3", *Language::Python.setup_install_args(prefix)
|
2021-12-20 09:16:56 -08:00
|
|
|
|
|
|
|
# Install completions to zsh/site-functions
|
2022-01-10 11:09:34 -08:00
|
|
|
zsh_completion.install Dir["zsh/_*"]
|
2021-12-20 09:16:56 -08:00
|
|
|
end
|
|
|
|
end
|