diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-11-04 10:45:06 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-11-04 10:45:06 +0000 |
commit | adc173e8aaa32f30e17cccad6d8a3665503aa852 (patch) | |
tree | b206f371ed78a1af92f9c307d4684f99509425f3 /polish | |
parent | 68ccc4296a2b82ff72679e7fe38b1c80f0975d8e (diff) | |
download | ports-adc173e8aaa32f30e17cccad6d8a3665503aa852.tar.gz ports-adc173e8aaa32f30e17cccad6d8a3665503aa852.zip |
Use tar to extract, while here, stagify
Notes
Notes:
svn path=/head/; revision=332686
Diffstat (limited to 'polish')
-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> |