Created
March 13, 2014 07:47
-
-
Save tureki/9523547 to your computer and use it in GitHub Desktop.
Linux SCWS install shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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