file-scripts/file-scripts.rb
2022-01-10 12:42:48 -08:00

20 lines
614 B
Ruby

class FileScripts < Formula
desc "Various scripts for performing file-related operations such as editing and deleting"
homepage "https://github.com/etorres4/file-scripts"
url "https://github.com/etorres4/file-scripts",
:using => :git
version "1.0"
sha256 "89ef58e7b7ff62914570e8747cf9a56d695e7da3e8d27655a6431c64b31d3eb6"
depends_on "python@3.10"
depends_on "fd"
depends_on "fzf"
def install
system Formula["python@3.10"].opt_bin/"python3", *Language::Python.setup_install_args(prefix)
# Install completions to zsh/site-functions
zsh_completion.install Dir["zsh/_*"]
end
end