8dee5ee0c0
TLSH is a fuzzy matching library. Given a byte stream with a minimum length of 256 bytes (and a minimum amount of randomness - see note in Python extension below), TLSH generates a hash value which can be used for similarity comparisons. Similar objects will have similar hash values which allows for the detection of similar objects by comparing their hash values. Note that the byte stream should have a sufficient amount of complexity. For example, a byte stream of identical bytes will not generate a hash value.
12 lines
334 B
Makefile
12 lines
334 B
Makefile
# $NetBSD: Makefile,v 1.1 2015/12/02 17:22:57 wiz Exp $
|
|
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/py_ext
|
|
|
|
USE_LANGUAGES= c c++
|
|
EGG_NAME= tlsh-0.2.0
|
|
|
|
.include "../../devel/tlsh/Makefile.common"
|
|
.include "../../devel/tlsh/buildlink3.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|