blob: f8f187b8e790a08d884e22e98fa46b54b6582a36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.2 2018/07/04 13:40:33 jperkin Exp $
PKGNAME= indexinfo-0.2.6
CATEGORIES= print
MASTER_SITES= https://github.com/bapt/indexinfo/archive/
DIST_SUBDIR= indexinfo
DISTFILES= 0.2.6.tar.gz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/bapt/indexinfo
COMMENT= Utility to regenerate the GNU info page index
pre-install:
${MKDIR} ${DESTDIR}${PREFIX}/bin
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} != "FreeBSD" && ${OPSYS} != "DragonFly"
SUBST_CLASSES+= reallocf
SUBST_STAGE.reallocf= pre-configure
SUBST_FILES.reallocf= indexinfo.c
SUBST_SED.reallocf= -e "s|reallocf|realloc|"
SUBST_MESSAGE.reallocf= Replace reallocf with realloc on ${OPSYS}
.endif
.include "../../mk/bsd.pkg.mk"
|