homebrew-core/Formula/fizsh.rb

30 lines
1.1 KiB
Ruby

class Fizsh < Formula
desc "Fish-like front end for ZSH"
homepage "https://github.com/zsh-users/fizsh"
url "https://downloads.sourceforge.net/project/fizsh/fizsh-1.0.9.tar.gz"
sha256 "dbbbe03101f82e62f1dfe1f8af7cde23bc043833679bc74601a0a3d58a117b07"
head "https://github.com/zsh-users/fizsh", :using => :git
bottle do
cellar :any_skip_relocation
sha256 "7916e571aaf891561a5a6be1ef9708e63ee17ecb41fe60b75129c765d3dad1cb" => :high_sierra
sha256 "334ceff9d649e87f87be9d3f561ee38221f8c87712a3b506b145191dc51fc4bd" => :sierra
sha256 "334ceff9d649e87f87be9d3f561ee38221f8c87712a3b506b145191dc51fc4bd" => :el_capitan
sha256 "334ceff9d649e87f87be9d3f561ee38221f8c87712a3b506b145191dc51fc4bd" => :yosemite
end
depends_on "zsh"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
assert_equal "hello", shell_output("#{bin}/fizsh -c \"echo hello\"").strip
end
end