homebrew-core/Formula/md5deep.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

17 lines
413 B
Ruby

require 'formula'
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
test do
system bin/"md5deep", "-h"
system bin/"hashdeep", "-h"
end
end