Advertisement
Guest User

Untitled

a guest
Jan 4th, 2011
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.73 KB | None | 0 0
  1. # Contributor: Marcel Wysocki <maci at satgnu dot net>
  2. # Maintainer: Marcel Wysocki <maci at satgnu dot net>
  3.  
  4. pkgname=ibus-handwrite
  5. pkgver=2.1.2
  6. pkgrel=1
  7. pkgdesc="Handwriting input engine for IBus"
  8. arch=('i686' 'x86_64')
  9. url="http://ibus.googlecode.com"
  10. license=('GPL2')
  11. depends=('ibus>=1.3.0' 'zinnia-tomoe')
  12. source=(http://ibus-handwrite.googlecode.com/files/$pkgname-$pkgver.tar.gz)
  13. md5sums=('0498e7010422e503bbb51866f1453d77')
  14.  
  15. build() {
  16.         cd "${srcdir}/${pkgname}-${pkgver}"
  17.         ./configure --prefix=/usr --libexecdir=/usr/lib/ibus --enable-zinnia --with-zinnia-tomoe=/usr/lib/zinnia/model/tomoe/
  18.         make
  19. }
  20.  
  21. package() {
  22.         cd "${srcdir}/${pkgname}-${pkgver}"
  23.  
  24.         make DESTDIR="${pkgdir}" install
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement