diff options
Diffstat (limited to 'community/ibus-unikey/PKGBUILD')
-rw-r--r-- | community/ibus-unikey/PKGBUILD | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/community/ibus-unikey/PKGBUILD b/community/ibus-unikey/PKGBUILD index 5ec16a1b7..c59d1e645 100644 --- a/community/ibus-unikey/PKGBUILD +++ b/community/ibus-unikey/PKGBUILD @@ -1,19 +1,21 @@ +# $Id: PKGBUILD 55971 2011-09-27 06:50:51Z ebelanger $ # Maintainer: Thomas Dziedzic < gostrc at gmail > # Contributor: Trương Xuân Tính <xuantinh at gmail dot com> pkgname=ibus-unikey -pkgver=0.5.1 -pkgrel=2 +pkgver=0.6.0 +pkgrel=1 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=('0b8f79941dc3e9a4744d52e88e4401dc') -depends=('ibus' 'gconf' 'gmp') +md5sums=('cef0e737ea3fba5bf79642bfd85d44b3') build() { - cd ${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ --prefix=/usr \ @@ -23,7 +25,7 @@ build() { } package() { - cd ${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install + make DESTDIR="${pkgdir}" install } |