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
665 B
Makefile
28 lines
665 B
Makefile
# $NetBSD: Makefile,v 1.12 2020/01/18 23:35:16 rillig Exp $
|
|
|
|
DISTNAME= fixelfprot-20040714
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://mail-index.NetBSD.org/tech-kern/2004/07/11/0002.html
|
|
COMMENT= C program to fix ELF protection on .got table for PowerPC
|
|
|
|
ONLY_FOR_PLATFORM= NetBSD-*-powerpc
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
NO_CONFIGURE= yes
|
|
|
|
INSTALLATION_DIRS= sbin
|
|
|
|
do-extract:
|
|
${CP} ${FILESDIR}/fixelfprot.c ${WRKSRC}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} fixelfprot.c -o fixelfprot
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fixelfprot ${DESTDIR}${PREFIX}/sbin
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|