desktop/fcitx-table-other/PKGBUILD

24 lines
564 B
Bash
Raw Normal View History

2012-05-10 18:24:22 +08:00
pkgname=fcitx-table-other
2017-09-16 14:47:12 +08:00
pkgver=0.2.4
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')
2017-09-16 14:47:12 +08:00
url="https://github.com/fcitx/fcitx-table-other"
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)
2017-09-16 14:47:12 +08:00
md5sums=('b53daa97b02cfca0b5f2f59e53bc67b0')
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
}