diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/ibus-unikey/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/ibus-unikey/PKGBUILD')
-rw-r--r-- | community/ibus-unikey/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/ibus-unikey/PKGBUILD b/community/ibus-unikey/PKGBUILD new file mode 100644 index 000000000..f1e78b64e --- /dev/null +++ b/community/ibus-unikey/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 79163 2012-10-31 05:41:19Z ebelanger $ +# Maintainer: Thomas Dziedzic < gostrc at gmail > +# Contributor: Trương Xuân Tính <xuantinh at gmail dot com> + +pkgname=ibus-unikey +pkgver=0.6.1 +pkgrel=2 +pkgdesc='IBus module for Vietnamese Keyboard' +arch=('i686' 'x86_64') +license=('GPL') +url='http://code.google.com/p/ibus-unikey/' +depends=('ibus') +makedepends=('intltool') +source=("http://ibus-unikey.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") +md5sums=('3bae6df0d4609a8c438c246030b9a61e') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/ibus + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install +} |