blob: 01d445babfe637e8207e0fda06eff77cc3e9b592 (
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
|
# $Id: PKGBUILD 116039 2014-07-21 07:45:35Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: GONG Chen <chen dot sst at gmail dot com>
# Contributor: 網軍總司令
pkgname=ibus-rime
pkgver=1.2
pkgrel=1
pkgdesc="Rime input method engine for ibus"
arch=('i686' 'x86_64')
url="http://code.google.com/p/rimeime/"
license=('GPL3')
depends=('ibus' 'libnotify' 'librime>=1.1' 'brise')
makedepends=('cmake' 'git')
install='ibus-rime.install'
source=("git+https://github.com/lotem/ibus-rime.git#tag=rime-$pkgver")
md5sums=('SKIP')
build() {
cd $pkgname
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
}
|