mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 14:07:15 +08:00
28 lines
717 B
Bash
28 lines
717 B
Bash
pkgname=fcitx-kkc
|
|
pkgver=0.1.3
|
|
pkgrel=1
|
|
pkgdesc="Fcitx Wrapper for libkkc."
|
|
arch=('x86_64')
|
|
url="https://github.com/fcitx/fcitx-kkc"
|
|
license=('GPL')
|
|
depends=('fcitx>=4.2.8' 'libkkc' 'libkkc-data' 'skk-jisyo' 'qt')
|
|
makedepends=('cmake')
|
|
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
sha512sums=('337c1692117374ea4e612debd2feac6a4f5975db0470846f3aaeaa8d145cc1ed6efdea879e5ed4d6257287de7a7d52f40411307ae130c4b73e76349141d04131')
|
|
|
|
build(){
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
mkdir -p build
|
|
cd build
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
|
|
make
|
|
}
|
|
|
|
package ()
|
|
{
|
|
cd "$srcdir/${pkgname}-${pkgver}/build"
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|