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

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

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

  def test
    system("#{bin}/md5deep -h") && system("#{bin}/hashdeep -h")
  end
end