diff options
author | root <root@rshg054.dnsready.net> | 2012-11-03 01:15:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-03 01:15:19 -0700 |
commit | e3f70522f1f35359d9307f478c96dace20a51ca1 (patch) | |
tree | 9db033a74cb298a1443b87e279b7549f35288789 /community/ibus-anthy | |
parent | 35bd2bb6857eb818ca53b8fe34d88106133342f4 (diff) |
Sat Nov 3 01:13:31 PDT 2012
Diffstat (limited to 'community/ibus-anthy')
-rw-r--r-- | community/ibus-anthy/PKGBUILD | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/community/ibus-anthy/PKGBUILD b/community/ibus-anthy/PKGBUILD index c93ffb015..a97a36fd0 100644 --- a/community/ibus-anthy/PKGBUILD +++ b/community/ibus-anthy/PKGBUILD @@ -1,24 +1,25 @@ -# $Id: PKGBUILD 68017 2012-03-17 00:56:59Z ebelanger $ +# $Id: PKGBUILD 79278 2012-11-02 10:15:38Z bpiotrowski $ # Contributor: Rainy <rainylau(at)gmail(dot)com> # Contributor: Lee.MaRS <leemars at gmail dot com> # Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=ibus-anthy -pkgver=1.2.7 +pkgver=1.4.99.20121006 pkgrel=1 -pkgdesc="Japanese input method Anthy IMEngine for IBus Framework" +pkgdesc='Japanese input method Anthy IMEngine for IBus Framework' arch=('i686' 'x86_64') license=('LGPL') -url="http://ibus.googlecode.com" -depends=('ibus' 'anthy' 'python2') +url='http://ibus.googlecode.com' +depends=('ibus' 'anthy' 'python2' 'pygtk') makedepends=('swig' 'intltool') options=('!libtool') source=(http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz) -md5sums=('091a13ff950171981768463993ffb683') +md5sums=('518aa503ce40054e0027f2a79c9df640') build() { - cd "${srcdir}/${pkgname}-${pkgver}" -# python2 fix + cd $srcdir/$pkgname-$pkgver + + # python2 fix for file in setup/ibus-setup-anthy.in engine/ibus-engine-anthy.in; do sed -i 's_exec python_exec python2_' $file done @@ -28,6 +29,6 @@ build() { } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir/ install } |