diff options
Diffstat (limited to 'polish/hunspell/Makefile')
-rw-r--r-- | polish/hunspell/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/polish/hunspell/Makefile b/polish/hunspell/Makefile index 1bf6574aba4a..0afd21877007 100644 --- a/polish/hunspell/Makefile +++ b/polish/hunspell/Makefile @@ -13,19 +13,19 @@ COMMENT= Polish hunspell dictionaries LICENSE= LGPL21 GPLv2 MPL LICENSE_COMB= dual -USE_ZIP= yes +EXTRACT_SUFX= .zip NO_BUILD= yes PLIST_FILES= %%DATADIR%%/pl_PL.aff \ %%DATADIR%%/pl_PL.dic PLIST_DIRSTRY= %%DATADIR%% -NO_STAGE= yes post-extract: - @${EXTRACT_CMD} ${WRKDIR}/pl_PL.zip -d ${WRKSRC}/ + @${MKDIR} ${WRKSRC} + @${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${WRKDIR}/pl_PL.zip -C ${WRKSRC}/ do-install: - ${MKDIR} ${DATADIR}/ - ${INSTALL_DATA} ${WRKSRC}/pl_PL.aff ${WRKSRC}/pl_PL.dic ${DATADIR}/ + ${MKDIR} ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/pl_PL.aff ${WRKSRC}/pl_PL.dic ${STAGEDIR}${DATADIR}/ .include <bsd.port.mk> |