desktop/fcitx-cloudpinyin/PKGBUILD

36 lines
906 B
Bash
Raw Normal View History

2011-09-25 02:41:58 +08:00
#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Neo Kolokotronis <tetris4@gmail.com>
# Contributor: poplarch <poplarch@gmail.com>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=fcitx-cloudpinyin
2013-01-30 08:18:25 +08:00
pkgver=0.3.1
2011-09-25 02:41:58 +08:00
pkgrel=1
pkgdesc="This is a standalone module for fcitx, it can use pinyin API on the internet to input."
arch=('i686' 'x86_64')
url="https://github.com/csslayer/fcitx-cloudpinyin"
license=('GPL')
2013-01-30 08:18:25 +08:00
depends=('fcitx>=4.2.7')
makedepends=('cmake')
source=(http://fcitx.googlecode.com/files/${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-01-30 08:18:25 +08:00
md5sums=('3690930d1412258ad37524448268534e')