Add support for ssdeep.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
4c053733d7
commit
9b2f3119a6
1 changed files with 12 additions and 0 deletions
12
Formula/ssdeep.rb
Normal file
12
Formula/ssdeep.rb
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
require 'formula'
|
||||||
|
|
||||||
|
class Ssdeep <Formula
|
||||||
|
url 'http://downloads.sourceforge.net/project/ssdeep/ssdeep-2.5/ssdeep-2.5.tar.gz'
|
||||||
|
homepage 'http://ssdeep.sourceforge.net/'
|
||||||
|
md5 'f3212dbf27384a00ad5eab1fb81fe3d1'
|
||||||
|
|
||||||
|
def install
|
||||||
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
||||||
|
system "make install"
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue