|
为了使用fcitx,你安装以后还需要配置.bashrc,设置好你的中文环境和指定fcitx为xim输入法,具体请参见fcitx主页:
http://www.fcitx.org/main/?q=book/view/36
根据Arch的哲学,我尽量不改动用户的系统。
# Contributor: ganlu <rhythm_gan@yahoo.com.cn>
pkgname=fcitx
pkgver=3.0.2
pkgrel=1
pkgdesc="An Chinese input collection for linux"
url="http://fcitx.linuxsir.cn"
license=GPL
depends=('xorg')
source=(http://www.fcitx.org/download/$pkgname-$pkgver.tar.bz2)
install=
md5sums=('506bc9b9366013b4f59ec3b6ee8b4a5e')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
} |
|