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
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
|
|
pkgname=fcitx-sunpinyin
|
2013-07-01 08:57:17 +08:00
|
|
|
pkgver=0.4.1
|
2011-09-25 02:41:58 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Fcitx Wrapper for sunpinyin."
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://code.google.com/p/fcitx"
|
|
|
|
license=('GPL')
|
2013-01-30 08:18:25 +08:00
|
|
|
depends=('fcitx>=4.2.7' 'sunpinyin-git>=20120603')
|
|
|
|
makedepends=('cmake')
|
2013-07-01 08:57:17 +08:00
|
|
|
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
2011-09-25 02:41:58 +08:00
|
|
|
|
|
|
|
build(){
|
|
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
|
|
rm -rf build
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package ()
|
|
|
|
{
|
|
|
|
cd "$srcdir/${pkgname}-${pkgver}/build"
|
|
|
|
make DESTDIR=${pkgdir} install
|
2012-02-23 12:09:30 +08:00
|
|
|
}
|
2013-07-01 08:57:17 +08:00
|
|
|
md5sums=('7a64ed52b81a3fff38caba0cee0cea25')
|