file-scripts/file-scripts.rb

19 lines
519 B
Ruby

class FileScripts < Formula
desc "Various scripts for performing file-related operations"
homepage "https://github.com/etorres4/file-scripts"
url "https://github.com/etorres4/file-scripts", :using => :git
version "2.0.1"
sha256 "fad7da96c72c8bef81f3ec6a2d1cb13b09fb44e084f98b05ba3a7dfd8b41ae12"
depends_on "fd"
depends_on "fzf"
def install
# Install scripts to system
bin.install Dir["bin/*"]
# Install completions to zsh/site-functions
zsh_completion.install Dir["zsh/_*"]
end
end