aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/md5deep.rb
blob: 2683b479ae984791d5461cf8da8598f64ccabdb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Md5deep < Formula
  homepage 'http://md5deep.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/md5deep/md5deep/md5deep-4.3/md5deep-4.3.tar.gz'
  sha1 'b9dd6444f07c9fc344ebef201baebdf71bda337f'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end

  test do
    system bin/"md5deep", "-h"
    system bin/"hashdeep", "-h"
  end
end