aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJannis Leidel2012-10-06 14:41:48 +0200
committerAdam Vandenberg2012-10-20 08:51:12 -0700
commitd9fc5624b8da4bb382acd353fa2853c5965e41a3 (patch)
treedef4b19c39ae6dd0de231e9bda52bb728a96c519 /Library
parentcfa768800864a0150fb030c2bf6cc5486afaa3e3 (diff)
downloadhomebrew-d9fc5624b8da4bb382acd353fa2853c5965e41a3.tar.bz2
ffind 0.2.0
Closes #15329. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ffind.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/ffind.rb b/Library/Formula/ffind.rb
new file mode 100644
index 000000000..e6a05931f
--- /dev/null
+++ b/Library/Formula/ffind.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Ffind < Formula
+ homepage 'https://github.com/sjl/friendly-find'
+ url 'https://github.com/sjl/friendly-find/tarball/v0.2.0'
+ sha1 'b902ebb9966c1394628e52d0dea3b1ba7c421720'
+
+ def install
+ bin.install "ffind"
+ end
+
+ def test
+ system "ffind"
+ end
+end