mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
29 lines
690 B
Bash
29 lines
690 B
Bash
# Maintainer: Weng Xuetian <wengxt@gmail.com>
|
|
|
|
pkgname=fcitx-anthy
|
|
pkgver=0.2.1
|
|
pkgrel=1
|
|
pkgdesc="Japanese Input support (Anthy) for fcitx."
|
|
arch=('i686' 'x86_64')
|
|
url="https://github.com/fcitx/fcitx-anthy"
|
|
license=('GPL')
|
|
depends=('fcitx>=4.2.8' 'anthy')
|
|
makedepends=('cmake')
|
|
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
|
|
build(){
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
[[ -d build ]] && rm -rf build ; mkdir build
|
|
cd build
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
|
|
make
|
|
}
|
|
|
|
package () {
|
|
cd "$srcdir/${pkgname}-${pkgver}/build"
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|
|
md5sums=('23ce628c01c5c09f9d4f1402c50fb19b')
|