freebsd-ports/textproc/ti-hunspell/Makefile
Baptiste Daroussin c82d9248b0 hunspell: avoid plist substitution
When using PLIST_FILES substitution is not necessary and recommended not
to use, the direct use of make(1) variables, works perfectly fine.
2021-08-09 08:39:07 +02:00

29 lines
687 B
Makefile

PORTNAME= hunspell
PORTVERSION= 20090911
PORTREVISION= 1
CATEGORIES= textproc
MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/
PKGNAMEPREFIX= ti-
DISTNAME= ti_ER-${PORTVERSION}
DIST_SUBDIR= ${PORTNAME}
MAINTAINER= office@FreeBSD.org
COMMENT= Tigrigna hunspell dictionaries
USES= zip
NO_ARCH= yes
NO_BUILD= yes
NO_WRKSUBDIR= yes
PLIST_FILES= ${DATADIR}/ti_ER.dic \
${DATADIR}/ti_ER.aff \
${DATADIR}/ti_ET.dic \
${DATADIR}/ti_ET.aff
do-install:
${MKDIR} ${STAGEDIR}${DATADIR}/
${INSTALL_DATA} ${WRKSRC}/ti_ER.aff ${WRKSRC}/ti_ER.dic ${STAGEDIR}${DATADIR}/
${LN} -s ti_ER.aff ${STAGEDIR}${DATADIR}/ti_ET.aff
${LN} -s ti_ER.dic ${STAGEDIR}${DATADIR}/ti_ET.dic
.include <bsd.port.mk>