blob: d2e78e1faf655d68e0483205a3ea31614223f512 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: csslayer <wengxt AT gmail com>
pkgname=fcitx5-git
pkgver=r180.0dcfd68
pkgrel=1
pkgdesc="Next generation of fcitx"
arch=('i686' 'x86_64')
url="https://github.com/fcitx/fcitx5"
license=('GPL')
depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 'systemd' 'wayland'
'wayland-protocols' 'xcb-imdkit-git' 'xcb-util-wm')
makedepends=('extra-cmake-modules' 'git')
source=("git+https://github.com/fcitx/fcitx5.git")
sha512sums=('SKIP')
pkgver() {
cd fcitx5
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build(){
cd fcitx5
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=/usr/lib .
make
}
package() {
cd fcitx5
make DESTDIR="$pkgdir" install
}
|