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.
33 lines
777 B
Makefile
33 lines
777 B
Makefile
# $NetBSD: Makefile,v 1.2 2020/01/18 23:35:09 rillig Exp $
|
|
|
|
DISTNAME= libmultigest-${VERSION}
|
|
CATEGORIES= security
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= agc@NetBSD.org
|
|
HOMEPAGE= https://www.NetBSD.org/
|
|
COMMENT= Multiple, concatenated digest value calculation library
|
|
LICENSE= modified-bsd
|
|
|
|
FILESDIR= ${.CURDIR}/../../security/multigest/files
|
|
|
|
GNU_CONFIGURE= yes
|
|
.if !defined(BOOTSTRAP)
|
|
USE_LIBTOOL= yes
|
|
.endif
|
|
AUTO_MKDIRS= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
VERSION!= ${AWK} '/\#define.*MULTIGEST_H_/ {print $$3}' ${FILESDIR}/multigest.h
|
|
|
|
do-extract:
|
|
${CP} -R ${FILESDIR} ${WRKSRC}
|
|
.if defined(BOOTSTRAP)
|
|
cd ${WRKSRC} && ${CP} Makefile.lib.in Makefile.in
|
|
.else
|
|
cd ${WRKSRC} && ${CP} Makefile.libtool.in Makefile.in
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|