diff options
Diffstat (limited to 'community/ibus-hangul')
-rw-r--r-- | community/ibus-hangul/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/ibus-hangul/PKGBUILD b/community/ibus-hangul/PKGBUILD new file mode 100644 index 000000000..efeed5115 --- /dev/null +++ b/community/ibus-hangul/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Thomas Dziedzic < gostrc at gmail > +# Contributor: Radim Hvizdák <hvizdakr at gmail dot com> + +pkgname=ibus-hangul +pkgver=1.3.0.20100329 +pkgrel=2 +pkgdesc='Korean input engine for IBus' +arch=('i686' 'x86_64') +url='http://ibus.googlecode.com' +license=('GPL') +depends=('ibus' 'libhangul') +makedepends=('intltool') +source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") +md5sums=('3464c98626685c8e23f6b0b580de2d08') + +build() { + cd ${pkgname}-${pkgver} + + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/ibus + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make NO_INDEX=true DESTDIR=${pkgdir} install +} |