aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAmar Sood (tekacs)2015-01-16 11:20:40 +0000
committerMike McQuaid2015-01-29 16:46:21 +0000
commit90bbb2060b8f549eace653c12cbe84fb4fa2479a (patch)
tree12b8e50fa2ec16f5a4d36602135b70b5aa173eaf /Library/Formula
parentaeda8bda1e26011119e2c6b0af1289c746ac540a (diff)
downloadhomebrew-90bbb2060b8f549eace653c12cbe84fb4fa2479a.tar.bz2
fizsh 1.0.8 (new formula)
Closes #35939. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fizsh.rb24
1 files changed, 24 insertions, 0 deletions
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