desktop/fcitx-sayura/PKGBUILD
2017-09-16 07:39:31 +01:00

28 lines
590 B
Bash

pkgname=fcitx-sayura
pkgver=0.1.2
pkgrel=1
pkgdesc="Sinhala for fcitx."
arch=('x86_64')
url="https://github.com/fcitx/fcitx-sayura"
license=('GPL')
depends=('fcitx>=4.2.7')
makedepends=('cmake')
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=('b5e5f2127647baf61cf5fc4ae3977b2d')