mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
36 lines
927 B
Bash
36 lines
927 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Neo Kolokotronis <tetris4@gmail.com>
|
|
# Contributor: poplarch <poplarch@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=fcitx-cloudpinyin
|
|
pkgver=0.3.3
|
|
pkgrel=1
|
|
pkgdesc="This is a standalone module for fcitx, it can use pinyin API on the internet to input."
|
|
arch=('i686' 'x86_64')
|
|
url="https://github.com/csslayer/fcitx-cloudpinyin"
|
|
license=('GPL')
|
|
depends=('fcitx>=4.2.7')
|
|
makedepends=('cmake' 'fcitx-pinyin')
|
|
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
|
|
build(){
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
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=('42405a6cb401e6f4a6aadd837f68ab20')
|