homebrew-core/Formula/md5deep.rb

18 lines
413 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Md5deep < Formula
homepage 'http://md5deep.sourceforge.net/'
url 'https://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
2012-06-18 19:52:53 +00:00
test do
system bin/"md5deep", "-h"
system bin/"hashdeep", "-h"
2012-06-18 19:52:53 +00:00
end
end