ibus-googlepinyin

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 下编译安装:

  1. 下载并安装必要编译组件:
    pkcon install cmake ccache gcc-c++ opencc-devel ibus-devel
  2. 下载并解压源代码包。
  3. 进入源代码目录:
    cd libgooglepinyin-*
  4. 创建编译目录:
    mkdir build && cd build
  5. 执行 CMake 编译脚本:
    cmake .. -DCMAKE_INSTALL_PREFIX=/usr
  6. 编译:
    make -j3
  7. 安装:
    su -c 'make install'
  8. 之后在 IBus 中启用即可。

你可能感兴趣的:(ibus-googlepinyin)