016b2b0fbf
SMHasher is a test suite designed to test the distribution, collision, and performance properties of non-cryptographic hash functions - it aims to be the "DieHarder" of hash testing, and does a pretty good job of finding flaws with a number of popular hashes. The SMHasher suite also includes MurmurHash3, which is the latest version in the series of MurmurHash functions - the new version is faster, more robust, and its variants can produce 32- and 128-bit hash values efficiently on both x86 and x64 platforms. https://code.google.com/p/smhasher/
26 lines
405 B
Makefile
26 lines
405 B
Makefile
# Created by: gnn
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= smhasher
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= benchmarks
|
|
|
|
MAINTAINER= gnn@FreeBSD.org
|
|
COMMENT= Hash Algorithm Benchmarking
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= gvnn3
|
|
GH_PROJECT= smhasher
|
|
DISTVERSIONPREFIX= v
|
|
|
|
USES= cmake
|
|
|
|
PLIST_FILES= bin/SMHasher
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/SMHasher ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|