2011-09-25 02:41:58 +08:00
|
|
|
#
|
|
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# Maintainer: Neo Kolokotronis <tetris4@gmail.com>
|
|
|
|
# Contributor: csslayer <wengxt AT gmail com>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
|
2013-05-30 01:59:31 +08:00
|
|
|
pkgbase=fcitx
|
|
|
|
pkgname=('fcitx' 'fcitx-pinyin' 'fcitx-table')
|
2013-10-29 05:09:04 +08:00
|
|
|
pkgver=4.2.8.3
|
2013-11-19 11:19:01 +08:00
|
|
|
pkgrel=2
|
2011-09-25 02:41:58 +08:00
|
|
|
arch=("i686" "x86_64")
|
|
|
|
license=('GPL')
|
|
|
|
url="http://code.google.com/p/fcitx"
|
2013-01-31 06:27:06 +08:00
|
|
|
replaces=('fcitx-qt' 'fcitx-keyboard')
|
|
|
|
conflicts=('fcitx-utf8-svn' 'fcitx-svn' 'fcitx-hg' 'fcitx-keyboard' 'fcitx-qt')
|
2013-10-29 05:09:04 +08:00
|
|
|
makedepends=('cmake' 'qt' 'icu' 'wget' 'opencc' 'lua' 'iso-codes' 'enchant' 'libxkbfile' 'cairo' 'pango')
|
2013-07-01 08:57:17 +08:00
|
|
|
source=("http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz")
|
2012-08-31 22:50:04 +08:00
|
|
|
categories=('localization')
|
2011-09-25 02:41:58 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
msg "Creating make environment..."
|
|
|
|
|
2013-04-08 10:22:47 +08:00
|
|
|
mkdir -p build
|
2011-09-25 02:41:58 +08:00
|
|
|
|
|
|
|
msg "Starting make..."
|
2013-04-08 10:22:47 +08:00
|
|
|
cd build
|
2011-09-25 02:41:58 +08:00
|
|
|
cmake ../${pkgname}-${pkgver} -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \
|
2013-11-19 11:19:01 +08:00
|
|
|
-DSYSCONFDIR=/etc \
|
2011-09-25 02:41:58 +08:00
|
|
|
-DENABLE_QT_IM_MODULE=On \
|
2013-01-31 06:27:06 +08:00
|
|
|
-DENABLE_GTK2_IM_MODULE=Off \
|
|
|
|
-DENABLE_GTK3_IM_MODULE=Off \
|
2012-05-10 18:24:22 +08:00
|
|
|
-DENABLE_OPENCC=On \
|
2012-06-03 21:52:31 +08:00
|
|
|
-DENABLE_LUA=On \
|
|
|
|
-DENABLE_GIR=Off
|
2011-09-25 02:41:58 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
2013-05-30 01:59:31 +08:00
|
|
|
package_fcitx(){
|
|
|
|
pkgdesc="A Flexible Input Method Framework"
|
|
|
|
depends=('pango' 'dbus-core' 'opencc' 'lua' 'iso-codes' 'icu' 'libxkbfile')
|
|
|
|
install=fcitx.install
|
2013-04-08 10:22:47 +08:00
|
|
|
cd build
|
2011-09-25 02:41:58 +08:00
|
|
|
make DESTDIR=$pkgdir install
|
2013-05-30 01:59:31 +08:00
|
|
|
|
|
|
|
# remove table
|
|
|
|
rm ${pkgdir}/usr/lib/fcitx/fcitx-table.so
|
|
|
|
rm -r ${pkgdir}/usr/share/fcitx/table/
|
|
|
|
rm ${pkgdir}/usr/share/fcitx/*/fcitx-table.*
|
|
|
|
rm ${pkgdir}/usr/share/fcitx/configdesc/table.desc
|
|
|
|
|
|
|
|
# remove pinyin
|
|
|
|
rm ${pkgdir}/usr/lib/fcitx/fcitx-pinyin.so
|
|
|
|
rm -r ${pkgdir}/usr/share/fcitx/pinyin/
|
|
|
|
rm ${pkgdir}/usr/share/fcitx/*/fcitx-pinyin.*
|
|
|
|
rm -r ${pkgdir}/usr/include/fcitx/module/pinyin/ -r
|
|
|
|
rm ${pkgdir}/usr/share/fcitx/inputmethod/{pinyin,shuangpin}.conf
|
2012-02-24 11:06:27 +08:00
|
|
|
}
|
2013-05-30 01:59:31 +08:00
|
|
|
|
|
|
|
package_fcitx-pinyin() {
|
|
|
|
pkgdesc="Pinyin Support for Fcitx"
|
|
|
|
depends=('fcitx')
|
|
|
|
pushd .
|
|
|
|
cd build/src/im/pinyin
|
|
|
|
make DESTDIR=$pkgdir install
|
|
|
|
popd
|
|
|
|
}
|
|
|
|
|
|
|
|
package_fcitx-table() {
|
|
|
|
pkgdesc="Table Support for Fcitx"
|
|
|
|
depends=('fcitx' 'fcitx-pinyin')
|
|
|
|
|
|
|
|
pushd .
|
|
|
|
cd build/src/im/table
|
|
|
|
make DESTDIR=$pkgdir install
|
|
|
|
popd
|
|
|
|
}
|
|
|
|
|
2013-07-18 00:16:37 +08:00
|
|
|
md5sums=('318da13bee2d4ea2a6467228984ec07e')
|
2013-10-29 05:09:04 +08:00
|
|
|
md5sums=('a16f7056158b5b0ee1eeae0d92346300')
|