Skip to content

Commit c4ffc54

Browse files
author
root
committedJun 29, 2012
Build aspell as part of the utilities.
1 parent 2f66510 commit c4ffc54

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed
 

‎build.sh

+11-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ cat <<_WREHELP
1313
Example: ./build.sh --perl # only perl will be built
1414
./build.sh --perl --apache # only perl and apache will build
1515
./build.sh --all # build all (except wdk)
16-
./build.sh --all --with-wdk # build all including wdk
1716
1817
Options:
1918
@@ -370,6 +369,17 @@ buildUtils(){
370369
# xpdf
371370
buildProgram "xpdf-3.03" "$CFG_CACHE --without-x"
372371

372+
# aspell
373+
buildProgram "aspell-0.60.6.1" "" "exec_prefix=$PREFIX"
374+
cd aspell6-en-6.0-0
375+
if [ "$WRE_CLEAN" == 1 ]; then
376+
$WRE_MAKE distclean
377+
$WRE_MAKE clean
378+
fi
379+
./configure --vars ASPELL=$PREFIX/bin/aspell WORD_LIST_COMPRESS=$PREFIX/bin/word-list-compress; checkError $? "aspell-en configure"
380+
$WRE_MAKE; checkError $? "aspell-en make"
381+
$WRE_MAKE install ; checkError $? "aspell-en make install"
382+
373383
cd $WRE_BUILDDIR
374384
}
375385

0 commit comments

Comments
 (0)
Please sign in to comment.