mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
26 lines
602 B
Bash
26 lines
602 B
Bash
# Maintainer: Weng Xuetian <wengxt AT gmail com>
|
|
|
|
pkgname=fcitx-table-other
|
|
pkgver=0.2.3
|
|
pkgrel=1
|
|
pkgdesc="Extra non-chinese table data for fcitx"
|
|
arch=('any')
|
|
url="http://code.google.com/p/fcitx"
|
|
license=('GPL2')
|
|
depends=('fcitx')
|
|
makedepends=('cmake' 'intltool')
|
|
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
md5sums=('dcd8d64a5411421dc0df94317ba355e8')
|
|
|
|
build(){
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
|
|
make
|
|
}
|
|
|
|
package ()
|
|
{
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
make DESTDIR=${pkgdir} install
|
|
}
|