summaryrefslogtreecommitdiff
path: root/polish
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-11-04 10:45:06 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-11-04 10:45:06 +0000
commitadc173e8aaa32f30e17cccad6d8a3665503aa852 (patch)
treeb206f371ed78a1af92f9c307d4684f99509425f3 /polish
parent- Remove SHRPX option: always build shrpx (diff)
Use tar to extract, while here, stagify
Notes
Notes: svn path=/head/; revision=332686
Diffstat (limited to 'polish')
-rw-r--r--polish/hunspell/Makefile10
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>