aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ffind.rb
blob: e6a05931f202ce2550db47bded846d43569aa3b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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