pkgsrc/misc/rhash/Makefile
mef 75d2b10173 (pkgsrc)
- Githubify
(upstream)
 - Update 1.3.1 to 1.3.3
---------------------
Tue Aug  5 2014 Aleksey
        * === Version 1.3.3 ===

Mon Aug  4 2014 And Sch, Aleksey
        * librhash: small optimization of Whirlpool

Sat Aug  2 2014 Aleksey
        * option --exclude for skipping some files during recursive scanning

Fri Aug  1 2014 Aleksey
        * update the SHA3 algorithm to follow the changes of the FIPS 202 draft

Wed Jul 30 2014 Aleksey
        * support torrents with more than one announce url

Tue Jul 29 2014 Aleksey
        * LibRHash now exports torrent functions

Mon Jul 21 2014 Tsukasa Oi
        * fixed test_rhash.sh script failing on the en_US.UTF-8 locale

Wed Jul 16 2014 Aleksey
        * changed the `-p' format names of sha* families, see manpage
        * set a boolean in config to true by a string `true', `on' or `yes'

Sun Jul 13 2014 Aleksey
        * Ctrl-C now interrupts benchmarking

Wed Jul  2 2014 Aleksey
        * === Version 1.3.2 ===

Sat Jun 21 2014 Aleksey
        * report warnings on files locked by some processes

Thu Jun 19 2014 Brad Campbell
        * ignore non-regular files while scanning directories recursively

Wed Jun 18 2014 Aleksey
        * option --follow for following symlinks to directories

Sun Apr 13 2014 ZinnKid
        * BTIH piece length calculation updated to follow the uTorrent algorithm change
2015-04-28 01:17:11 +00:00

28 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.2 2015/04/28 01:17:11 mef Exp $
DISTNAME= rhash-1.3.3
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GITHUB:=rhash/}
GITHUB_PROJECT= RHash
GITHUB_TAG= v1.3.3
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/rhash/RHash
COMMENT= Calculate/check CRC32, MD5, SHA1, GOST, TTH, BTIH or other hash sums
LICENSE= mit
WRKSRC= ${WRKDIR}/${DISTNAME:S/rh/RH/}
INSTALLATION_DIRS= bin include lib ${PKGMANDIR}/man1 share/examples/rhash
CONF_FILES+= ${PREFIX}/share/examples/rhash/rhashrc ${PKG_SYSCONFDIR}/rhashrc
do-install:
cd ${WRKSRC} && \
${INSTALL_PROGRAM} rhash ${DESTDIR}${PREFIX}/bin && \
${INSTALL_LIB} librhash/librhash.a ${DESTDIR}${PREFIX}/lib && \
${INSTALL_DATA} librhash/rhash.h librhash/rhash_timing.h ${DESTDIR}${PREFIX}/include && \
${INSTALL_DATA} dist/rhash.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 && \
${INSTALL_DATA} dist/rhashrc.sample ${DESTDIR}${PREFIX}/share/examples/rhash/rhashrc
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"