diff options
Diffstat (limited to 'community/ibus-table-extraphrase')
-rw-r--r-- | community/ibus-table-extraphrase/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/ibus-table-extraphrase/PKGBUILD b/community/ibus-table-extraphrase/PKGBUILD new file mode 100644 index 000000000..53d7e079d --- /dev/null +++ b/community/ibus-table-extraphrase/PKGBUILD @@ -0,0 +1,33 @@ +# Contributor: Lee.MaRS<leemars at gmail.com> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=ibus-table-extraphrase +pkgver=1.2.0.20100305 +pkgrel=2 +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>=1.2.0') +provides=('ibus-table-extraphrase=1.2.0') +conflicts=('ibus-table-extraphrase-git') +source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") +md5sums=('ab3a0bd3b443ad4df9ad5554e155550d') + +build() { + cd ${pkgname}-${pkgver} + + ./autogen.sh + + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/ibus + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |