homebrew-core/Formula/fizsh.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

32 lines
951 B
Ruby

class Fizsh < Formula
desc "Fish-like front end for ZSH"
homepage "https://github.com/zsh-users/fizsh"
stable do
url "https://downloads.sourceforge.net/project/fizsh/fizsh-1.0.8.tar.gz"
sha256 "3d17933c4773532209f9771221ec1dbb33d11fa4e0fbccc506a38d1b4f2359c7"
end
head "https://github.com/zsh-users/fizsh", :using => :git
bottle do
cellar :any
sha1 "31962775bf8fde4d57fa03bb2a9c1c7ae2449afb" => :yosemite
sha1 "e95ca1c85aae0e07d8fe99f631a3eb00ae6bc708" => :mavericks
sha1 "b1ce95c0da21159a36c8153064fcb82ed708c8f7" => :mountain_lion
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