2022-01-10 11:09:34 -08:00
|
|
|
class FileScripts < Formula
|
2022-01-10 19:53:46 -08:00
|
|
|
desc "Various scripts for performing file-related operations"
|
2022-01-10 11:09:34 -08:00
|
|
|
homepage "https://github.com/etorres4/file-scripts"
|
2022-01-10 19:53:46 -08:00
|
|
|
url "https://github.com/etorres4/file-scripts", :using => :git
|
2024-09-20 23:25:25 -07:00
|
|
|
version "2.0.1"
|
2022-09-13 21:37:53 -07:00
|
|
|
sha256 "fad7da96c72c8bef81f3ec6a2d1cb13b09fb44e084f98b05ba3a7dfd8b41ae12"
|
2021-12-20 09:16:56 -08:00
|
|
|
|
2022-01-10 11:09:34 -08:00
|
|
|
depends_on "fd"
|
|
|
|
depends_on "fzf"
|
2021-12-20 09:16:56 -08:00
|
|
|
|
|
|
|
def install
|
2022-10-01 13:01:31 -07:00
|
|
|
# Install scripts to system
|
|
|
|
bin.install Dir["bin/*"]
|
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
|