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