homebrew-core/Formula/md5deep.rb

13 lines
327 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Md5deep < Formula
2012-01-06 18:44:08 +00:00
url 'http://downloads.sourceforge.net/project/md5deep/md5deep/md5deep-4.0.0/md5deep-4.0.0.tar.gz'
homepage 'http://md5deep.sourceforge.net/'
2012-01-06 18:44:08 +00:00
md5 'fc3c0afbcf72861a5a42c699e804d6d4'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end