98da58760b
Python/C bindings for the ssdeep library at http://ssdeep.sourceforge.net: * hash_buf / hash_bytes - returns the ssdeep hash for a given buffer * hash_file - returns the ssdeep hash for filepath * compare - returns the % match between 2 hashes import pydeep pydeep.hash_buf('somedata') pydeep.hash_file('path-to-file') pydeep.compare('hash1','hash2')
15 lines
466 B
Makefile
15 lines
466 B
Makefile
# $NetBSD: Makefile,v 1.1 2014/06/02 00:00:15 rodent Exp $
|
|
|
|
DISTNAME= pydeep-0.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= python security
|
|
MASTER_SITES= https://pypi.python.org/packages/source/p/pydeep/
|
|
|
|
MAINTAINER= rodent@NetBSD.org
|
|
HOMEPAGE= http://www.github.com/kbandla/pydeep
|
|
COMMENT= Python bindings for ssdeep
|
|
LICENSE= modified-bsd
|
|
|
|
.include "../../security/ssdeep/buildlink3.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|