21 lines
513 B
Ruby
21 lines
513 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.2.tar.gz"
|
|
sha256 "45f6e1091986c892ea45e1ac82f2d7f5417cfb343dc569d2625b5980e6bcfb62"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "3f3ef09db2afedd44ec883cfc9a050400e3a4c1526b9465185386a8494283467"
|
|
end
|
|
|
|
def install
|
|
bin.install "fff"
|
|
man1.install "fff.1"
|
|
end
|
|
|
|
test do
|
|
system bin/"fff", "-v"
|
|
end
|
|
end
|