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.
28 lines
704 B
Makefile
28 lines
704 B
Makefile
# $NetBSD: Makefile,v 1.7 2020/01/18 23:35:22 rillig Exp $
|
|
#
|
|
|
|
DISTNAME= zidrav4unix-1.2.0
|
|
PKGNAME= zidrav-1.20
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=zidrav/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://sourceforge.net/projects/zidrav
|
|
COMMENT= File corruption detection and repair program
|
|
|
|
USE_LANGUAGES= c c++
|
|
BUILD_TARGET= zidrav
|
|
|
|
.include "../../mk/endian.mk"
|
|
.if ${MACHINE_ENDIAN} == "big"
|
|
CXXFLAGS+= -DCPU_BIGENDIAN
|
|
.endif
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/zidrav ${DESTDIR}${PREFIX}/bin/zidrav
|
|
${INSTALL_MAN} ${WRKSRC}/zidrav.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/zidrav.1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|