17 lines
385 B
Ruby
17 lines
385 B
Ruby
class Fff < Formula
|
|
desc "Simple file manager written in bash"
|
|
homepage "https://github.com/dylanaraps/fff"
|
|
url "https://github.com/dylanaraps/fff/archive/2.1.tar.gz"
|
|
sha256 "776870d11c022fa40468d5d582831c0ab5beced573489097deaaf5dd690e7eab"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "fff"
|
|
man1.install "fff.1"
|
|
end
|
|
|
|
test do
|
|
system bin/"fff", "-v"
|
|
end
|
|
end
|