blob: d3928277045573fb0d1deb990f83f24f397c1eb6 (
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://sourceforge.net/projects/md5deep/files/md5deep/md5deep-4.3/md5deep-4.3.tar.gz'
sha1 'b9dd6444f07c9fc344ebef201baebdf71bda337f'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
def test
system("#{bin}/md5deep -h") && system("#{bin}/hashdeep -h")
end
end
|