b686dd9180
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
31 lines
751 B
Makefile
31 lines
751 B
Makefile
# $NetBSD: Makefile,v 1.63 2020/01/18 23:33:25 rillig Exp $
|
|
#
|
|
# When adding new digest algorithms, please use rmd160 as the template,
|
|
# and bump the VERSION definition.
|
|
|
|
PKGNAME?= digest-${VERSION}
|
|
CATEGORIES= pkgtools
|
|
|
|
MAINTAINER?= agc@NetBSD.org
|
|
HOMEPAGE?= https://www.NetBSD.org/docs/software/packages.html
|
|
COMMENT?= Message digest wrapper utility
|
|
LICENSE= original-bsd
|
|
|
|
CHECK_PERMS= no
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
VERSION!= ${AWK} -F "'" '/^PACKAGE_VERSION=/ {print $$2}' \
|
|
${FILESDIR}/configure
|
|
|
|
do-extract:
|
|
@${CP} -R ${FILESDIR} ${WRKSRC}
|
|
|
|
do-test:
|
|
@${ECHO} "No news is good news"
|
|
@cd ${WRKSRC} && ${SETENV} DIGESTDIR=${WRKSRC} ${SH} ./regress.sh
|
|
@${ECHO} "All tests completed"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|