mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
36 lines
865 B
Bash
36 lines
865 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=kcm-fcitx
|
|
pkgver=0.2.0
|
|
pkgrel=1
|
|
pkgdesc="KDE Config Module for Fcitx"
|
|
arch=('i686' 'x86_64')
|
|
url="https://github.com/fcitx/kcm-fcitx"
|
|
license=('GPL')
|
|
depends=('fcitx' 'kdebase-runtime')
|
|
makedepends=('cmake' 'intltool' 'automoc4')
|
|
source=(http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('8e9d558d615533aa9f0c6e59d764373e')
|
|
|
|
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
|
|
} |