File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ cat <<_WREHELP
13
13
Example: ./build.sh --perl # only perl will be built
14
14
./build.sh --perl --apache # only perl and apache will build
15
15
./build.sh --all # build all (except wdk)
16
- ./build.sh --all --with-wdk # build all including wdk
17
16
18
17
Options:
19
18
@@ -370,6 +369,17 @@ buildUtils(){
370
369
# xpdf
371
370
buildProgram " xpdf-3.03" " $CFG_CACHE --without-x"
372
371
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
+
373
383
cd $WRE_BUILDDIR
374
384
}
375
385
You can’t perform that action at this time.
0 commit comments