desktop/fcitx-table-other/PKGBUILD

26 lines
602 B
Bash
Raw Normal View History

2012-05-10 18:24:22 +08:00
# Maintainer: Weng Xuetian <wengxt AT gmail com>
pkgname=fcitx-table-other
2014-06-05 16:52:57 +08:00
pkgver=0.2.3
pkgrel=1
2012-05-10 18:24:22 +08:00
pkgdesc="Extra non-chinese table data for fcitx"
2016-05-21 02:29:01 +08:00
arch=('any')
2012-05-10 18:24:22 +08:00
url="http://code.google.com/p/fcitx"
2016-05-21 02:29:01 +08:00
license=('GPL2')
depends=('fcitx')
makedepends=('cmake' 'intltool')
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
2016-05-21 02:29:01 +08:00
md5sums=('dcd8d64a5411421dc0df94317ba355e8')
2012-05-10 18:24:22 +08:00
build(){
cd "$srcdir/${pkgname}-${pkgver}"
2016-05-21 02:29:01 +08:00
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
2014-06-05 16:52:57 +08:00
make
2012-05-10 18:24:22 +08:00
}
package ()
{
2016-05-21 02:29:01 +08:00
cd "$srcdir/${pkgname}-${pkgver}"
2012-05-10 18:24:22 +08:00
make DESTDIR=${pkgdir} install
}