desktop/fcitx-unikey/PKGBUILD

30 lines
680 B
Bash
Raw Normal View History

2012-05-10 18:24:22 +08:00
# Maintainer: Weng Xuetian <wengxt@gmail.com>
pkgname=fcitx-unikey
2014-06-05 16:52:57 +08:00
pkgver=0.2.4
2012-05-10 18:24:22 +08:00
pkgrel=1
pkgdesc="Fcitx Wrapper for Unikey (Vietnamese)."
arch=('i686' 'x86_64')
2014-06-05 16:52:57 +08:00
url="https://fcitx-im.org/wiki/Fcitx"
2012-05-10 18:24:22 +08:00
license=('GPL')
2013-01-30 08:18:25 +08:00
depends=('fcitx>=4.2.7' 'qt')
makedepends=('cmake')
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
2012-05-10 18:24:22 +08:00
build(){
cd "$srcdir/${pkgname}-${pkgver}"
2014-06-05 16:52:57 +08:00
[[ -d build ]] && rm -rf build ; mkdir build
2012-05-10 18:24:22 +08:00
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
make
}
package ()
{
cd "$srcdir/${pkgname}-${pkgver}/build"
make DESTDIR=${pkgdir} install
}
2014-06-05 16:52:57 +08:00
md5sums=('26509b3b99372e01421f4cb8d1080054')