From 90bbb2060b8f549eace653c12cbe84fb4fa2479a Mon Sep 17 00:00:00 2001 From: Amar Sood (tekacs) Date: Fri, 16 Jan 2015 11:20:40 +0000 Subject: fizsh 1.0.8 (new formula) Closes #35939. Signed-off-by: Mike McQuaid --- Library/Formula/fizsh.rb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Library/Formula/fizsh.rb (limited to 'Library') diff --git a/Library/Formula/fizsh.rb b/Library/Formula/fizsh.rb new file mode 100644 index 000000000..293ea3fa0 --- /dev/null +++ b/Library/Formula/fizsh.rb @@ -0,0 +1,24 @@ +class Fizsh < Formula + homepage "https://github.com/zsh-users/fizsh" + + stable do + url "https://downloads.sourceforge.net/project/fizsh/fizsh-1.0.8.tar.gz" + sha1 "515f8828c8bd9f2da1e2716bb3d60727e2f26e90" + end + + head "https://github.com/zsh-users/fizsh", :using => :git + + 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 -- cgit v1.2.3