blob: 04016b0c77b443a7ee005e8fee87b95420b158f2 (
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
|
# $Id: PKGBUILD 61932 2012-01-11 04:09:08Z ebelanger $
# Contributor: Lee.MaRS<leemars at gmail.com>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=ibus-table-extraphrase
pkgver=1.3.9.20110826
pkgrel=1
pkgdesc="The extra phrases of tables engines for IBus"
arch=('i686' 'x86_64')
url="http://code.google.com/p/ibus/"
license=('LGPL')
depends=('ibus-table')
source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
sha1sums=('b2f69cfedc230988d7b8693dd8fd3c250a376246')
build() {
cd ${pkgname}-${pkgver}
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/ibus
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
|