mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-11 12:14:38 +08:00
37 lines
907 B
Bash
37 lines
907 B
Bash
|
#
|
||
|
# Apps Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# Maintainer: Weng Xuetian <wengxt@gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=fcitx-keyboard
|
||
|
pkgver=0.1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Keyboard Layout Integration wtih Fcitx"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="https://github.com/fcitx/fcitx-keyboard"
|
||
|
license=('GPL')
|
||
|
depends=('fcitx>=4.2.0' 'enchant' 'icu' 'libxkbfile' 'libxml2' 'xkeyboard-config')
|
||
|
conflicts=('fcitx-keyboard-git')
|
||
|
makedepends=('cmake' 'intltool')
|
||
|
source=(http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
|
||
|
|
||
|
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=('37eb967eb882dd53a73c0773a82b0949')
|