mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 15:37:14 +08:00
36 lines
784 B
Bash
36 lines
784 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-sayura
|
||
|
pkgver=0.1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Sinhala for fcitx."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://code.google.com/p/fcitx"
|
||
|
license=('GPL')
|
||
|
depends=('fcitx>=4.2.5')
|
||
|
makedepends=('cmake' 'intltool')
|
||
|
source=(http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz)
|
||
|
md5sums=('66c3a797cdc1f5a5ae19690cc8fd7cbd')
|
||
|
|
||
|
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
|
||
|
}
|