desktop/fcitx-hangul/PKGBUILD

28 lines
609 B
Bash
Raw Normal View History

2012-04-07 20:39:32 +08:00
pkgname=fcitx-hangul
2017-09-16 13:47:47 +08:00
pkgver=0.3.1
pkgrel=1
2012-04-07 20:39:32 +08:00
pkgdesc="Fcitx Wrapper for Hangul."
2017-09-16 13:47:47 +08:00
arch=('x86_64')
url="https://github.com/fcitx/fcitx-hangul"
2012-04-07 20:39:32 +08:00
license=('GPL')
2013-01-30 08:18:25 +08:00
depends=('fcitx>=4.2.7' 'libhangul')
makedepends=('cmake')
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
2012-04-07 20:39:32 +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 13:47:47 +08:00
md5sums=('32d0480006dce1328025d2d94e8fa4b0')