Created
May 11, 2009 04:02
-
-
Save hitode909/109860 to your computer and use it in GitHub Desktop.
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 | |
# setup cmigemo and migemo.el | |
# see http://matsuesns.jp/blog/blog.php?key=2778 | |
cd $TMPDIR | |
wget http://www.kaoriya.net/dist/cmigemo-1.2.tar.bz2 | |
tar jxvf cmigemo-1.2.tar.bz2 | |
cd cmigemo-1.2 | |
./configure | |
make osx | |
make osx-dict | |
sudo make osx-install | |
cd .. | |
wget http://0xcc.net/migemo/migemo-0.40.tar.gz | |
tar zxvf migemo-0.40.tar.gz | |
wget http://0xcc.net/ruby-romkan/ruby-romkan-0.4.tar.gz | |
tar zxvf ruby-romkan-0.4.tar.gz | |
wget http://0xcc.net/ruby-bsearch/ruby-bsearch-1.5.tar.gz | |
tar zxvf ruby-bsearch-1.5.tar.gz | |
cp ruby-romkan-0.4/romkan.rb migemo-0.40/ | |
cp ruby-bsearch-1.5/bsearch.rb migemo-0.40/ | |
cd migemo-0.40 | |
./configure | |
make | |
mv migemo.el ~/.elisp/ # 適切なpathの通ったディレクトリ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment