Skip to content

Instantly share code, notes, and snippets.

@tureki
Created March 13, 2014 07:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tureki/9523547 to your computer and use it in GitHub Desktop.
Save tureki/9523547 to your computer and use it in GitHub Desktop.
Linux SCWS install shell
#! /bin/sh
cd ~
mkdir build
cd build
wget http://www.xunsearch.com/scws/down/scws-1.2.2.tar.bz2
tar xvjf scws-1.2.2.tar.bz2
cd scws-1.2.2
./configure --prefix=/usr/local/scws ; make ; make install
cd /usr/local/scws/etc
wget http://www.xunsearch.com/scws/down/scws-dict-cht-utf8.tar.bz2
tar xvjf scws-dict-cht-utf8.tar.bz2
wget http://www.ftphp.com/scws/down/scws-dict-chs-utf8.tar.bz2
tar jxvf scws-dict-chs-utf8.tar.bz2
tar jxvf scws-dict-cht-utf8.tar.bz2
scws-dict-cht-utf8.tar.bz2
cd ~/build/scws-1.2.2/phpext/
phpize
./configure --with-scws=/usr/local/scws
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment