blob: de9db75fd791ac12b2f7e6c75c082832850bdc6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
require 'formula'
class Ffind < Formula
  homepage 'https://github.com/sjl/friendly-find'
  url 'https://github.com/sjl/friendly-find/archive/v0.3.1.tar.gz'
  sha1 'c729a7ab2ae215d37a3e7cc0f16de24be1c965f6'
  conflicts_with 'sleuthkit',
    :because => "both install a 'ffind' executable."
  def install
    bin.install "ffind"
  end
  test do
    system "#{bin}/ffind"
  end
end
  |