diff options
Diffstat (limited to 'community/ibus-anthy')
-rw-r--r-- | community/ibus-anthy/PKGBUILD | 13 | ||||
-rw-r--r-- | community/ibus-anthy/ibus-anthy.install | 11 |
2 files changed, 19 insertions, 5 deletions
diff --git a/community/ibus-anthy/PKGBUILD b/community/ibus-anthy/PKGBUILD index ef42954e5..b7fd947a8 100644 --- a/community/ibus-anthy/PKGBUILD +++ b/community/ibus-anthy/PKGBUILD @@ -1,20 +1,21 @@ -# $Id: PKGBUILD 79278 2012-11-02 10:15:38Z bpiotrowski $ +# $Id: PKGBUILD 81882 2013-01-03 03:41:12Z fyan $ +# Maintainer: Felix Yan <felixonmars@gmail.com> # Contributor: Rainy <rainylau(at)gmail(dot)com> # Contributor: Lee.MaRS <leemars at gmail dot com> -# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=ibus-anthy -pkgver=1.4.99.20121006 +pkgver=1.5.0 pkgrel=1 pkgdesc='Japanese input method Anthy IMEngine for IBus Framework' arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url='http://ibus.googlecode.com' -depends=('ibus' 'anthy' 'python2' 'pygtk') +depends=('ibus' 'anthy' 'python2' 'pygtk' 'gtk-update-icon-cache') makedepends=('swig' 'intltool') options=('!libtool') +install=$pkgname.install source=(http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz) -md5sums=('518aa503ce40054e0027f2a79c9df640') build() { cd $srcdir/$pkgname-$pkgver @@ -32,3 +33,5 @@ package() { cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir/ install } + +md5sums=('4ff000bec3c342f5cd5a6d9e05a4abdf') diff --git a/community/ibus-anthy/ibus-anthy.install b/community/ibus-anthy/ibus-anthy.install new file mode 100644 index 000000000..6b1b64bdd --- /dev/null +++ b/community/ibus-anthy/ibus-anthy.install @@ -0,0 +1,11 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |