# $Id: PKGBUILD 82956 2013-01-26 06:38:02Z fyan $ # Maintainer: Felix Yan pkgname=fcitx-unikey pkgver=0.2.0 pkgrel=1 pkgdesc="Fcitx Wrapper for unikey" arch=('i686' 'x86_64') url="http://code.google.com/p/fcitx" license=('GPL') depends=('fcitx>=4.2.7') optdepends=('qt: To run the fcitx unikey macro editor') makedepends=('cmake' 'intltool' 'qt') source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz") install=fcitx-unikey.install 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 } md5sums=('f1ffd6c8439e4d277eace994052d91da')