desktop/fcitx-sayura/PKGBUILD

28 lines
590 B
Bash
Raw Normal View History

2012-09-15 11:03:40 +08:00
pkgname=fcitx-sayura
2017-09-16 14:39:31 +08:00
pkgver=0.1.2
2012-09-15 11:03:40 +08:00
pkgrel=1
pkgdesc="Sinhala for fcitx."
2017-09-16 14:39:31 +08:00
arch=('x86_64')
url="https://github.com/fcitx/fcitx-sayura"
2012-09-15 11:03:40 +08:00
license=('GPL')
2017-09-16 14:39:31 +08:00
depends=('fcitx>=4.2.7')
makedepends=('cmake')
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
2012-09-15 11:03:40 +08:00
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
}
2017-09-16 14:39:31 +08:00
md5sums=('b5e5f2127647baf61cf5fc4ae3977b2d')