freebsd-ports/french/hunspell/Makefile
Mathieu Arnold cf118ccf87
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
2021-04-07 10:09:01 +02:00

37 lines
928 B
Makefile

PORTNAME= hunspell
PORTVERSION= 6.4.1
DISTVERSIONPREFIX= french-dictionaries-v
CATEGORIES= french textproc
MASTER_SITES= https://www.dicollecte.org/download/fr/ \
LOCAL/sunpoet/${PORTNAME}
DIST_SUBDIR= ${PORTNAME}
MAINTAINER= office@FreeBSD.org
COMMENT= Modern French hunspell dictionaries
LICENSE= MPL20
USES= zip
NO_ARCH= yes
NO_BUILD= yes
NO_WRKSUBDIR= yes
PLIST_FILES= ${DATADIR}/fr_FR.aff \
${DATADIR}/fr_FR.dic
FRALIASES= fr_BE fr_CA fr_CH fr_LU
.for ALIAS in ${FRALIASES}
PLIST_FILES+= ${DATADIR}/${ALIAS}.aff \
${DATADIR}/${ALIAS}.dic
.endfor
do-install:
${MKDIR} ${STAGEDIR}${DATADIR}/
${INSTALL_DATA} ${WRKSRC}/fr-moderne.aff ${STAGEDIR}${DATADIR}/fr_FR.aff
${INSTALL_DATA} ${WRKSRC}/fr-moderne.dic ${STAGEDIR}${DATADIR}/fr_FR.dic
.for ALIAS in ${FRALIASES}
${LN} -sf fr_FR.aff ${STAGEDIR}${DATADIR}/${ALIAS}.aff
${LN} -sf fr_FR.dic ${STAGEDIR}${DATADIR}/${ALIAS}.dic
.endfor
.include <bsd.port.mk>