ee864b3205
RHash is used to recursively calculate hashes on files, similar to md5deep, except that it implements a few more specialized hash algorithms. Key among these are the ones used in many file-sharing protocols such as DC++, BitTorrent and others. Closes Homebrew/homebrew#11841. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
386 B
Ruby
13 lines
386 B
Ruby
require 'formula'
|
|
|
|
class Rhash < Formula
|
|
homepage 'http://rhash.anz.ru/'
|
|
url 'http://downloads.sourceforge.net/project/rhash/rhash/1.2.9/rhash-1.2.9-src.tar.gz'
|
|
sha1 '83c0e74a39a7824f430ef24c107e3474831d0acf'
|
|
|
|
def install
|
|
system 'make', 'install', "PREFIX=#{prefix}",
|
|
"DESTDIR=#{prefix}",
|
|
"CC=#{ENV.cc}"
|
|
end
|
|
end
|