aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDominyk Tiller2014-06-13 23:31:03 +0100
committerMisty De Meo2014-06-13 21:29:39 -0700
commit61c85de28b2f42cfedd4491135e73c1868eef6f7 (patch)
tree84ac2a65f767125d09d2a4b5076b5875e0ef71c9 /Library
parentece306f2eb6a5389a69f3eb0f140d6014e22b51d (diff)
downloadhomebrew-61c85de28b2f42cfedd4491135e73c1868eef6f7.tar.bz2
md5deep 4.4
The source code packages have been moved from Sourceforge to Github, which is reflected here. The way of building of the source code has also changed, which should be executed successfully here. Please note that because of the way the source code build has been modified between 4.3 & 4.4 there are new dependencies involved in the build. SHA1SUM updated as well. Closes #30133. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/md5deep.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/md5deep.rb b/Library/Formula/md5deep.rb
index fb572ef0d..5047406fb 100644
--- a/Library/Formula/md5deep.rb
+++ b/Library/Formula/md5deep.rb
@@ -1,11 +1,15 @@
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'
+ homepage 'https://github.com/jessek/hashdeep'
+ url 'https://github.com/jessek/hashdeep/archive/release-4.4.tar.gz'
+ sha1 'cb4e313352974299c32bc55fe56396adb74517ef'
+
+ depends_on 'autoconf' => :build
+ depends_on 'automake' => :build
def install
+ system "sh bootstrap.sh"
system "./configure", "--prefix=#{prefix}"
system "make install"
end