mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 07:37:15 +08:00
28 lines
724 B
Bash
28 lines
724 B
Bash
pkgname=fcitx-kkc
|
|
pkgver=0.1.4
|
|
pkgrel=1
|
|
pkgdesc="Fcitx Wrapper for libkkc."
|
|
arch=('x86_64')
|
|
url="https://github.com/fcitx/fcitx-kkc"
|
|
license=('GPL')
|
|
depends=('fcitx>=4.2.8' 'fcitx-qt5' 'libkkc' 'libkkc-data' 'skk-jisyo')
|
|
makedepends=('cmake')
|
|
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
sha512sums=('75931031e05789b755a0fcb82f689d04084427c4ec2171e82ecffff7143c0f8d55f8d11e21b28d3e1befcef7a036e44eca5dd57c340ca5a11cb1358bc6c461ae')
|
|
|
|
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
|
|
}
|
|
|