Shellexy 童鞋将Android 平台的 Google Pinyin 输入法移植到 IBus 输入法框架下了。注意该程序并非 Google 官方出品,是将爱好者自行将 Android 平台版本迁移过来。
Ubuntu安装方法
- 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
Fedora 15 下编译安装:
- 下载并安装必要编译组件:
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 中启用即可。
然后在 ibus 里添加就googlepinyin可以了
项目地址:http://code.google.com/p/libgooglepinyin/
消息来源:wowubuntu.com,Linuxtoy.org