sudo apt-get install cmake build-essential opencc mercurial ibus
hg clone http://code.google.com/p/libgooglepinyin/
cd libgooglepinyin
mkdir build; cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
sudo make install
而後在 ibus 裏添加就googlepinyin能夠了
Fedora 15 下編譯安裝:c++
- 下載並安裝必要編譯組件:
pkcon install cmake ccache gcc-c++ opencc-devel ibus-devel
- 下載並解壓源代碼包。
- 進入源代碼目錄:
cd libgooglepinyin-*
- 建立編譯目錄:
mkdir build && cd build
- 執行 CMake 編譯腳本:
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
- 編譯:
make -j3
- 安裝:
su -c 'make install'
- 以後在 IBus 中啓用便可。