diff options
author | root <root@rshg047.dnsready.net> | 2011-06-06 22:47:17 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-06 22:47:17 +0000 |
commit | 93a9cde1226d0c82849bc71ff4d481d3d2698dc1 (patch) | |
tree | 1f60e792a546a9484aec590ce687df8f0ec6c697 /community/ibus-qt/PKGBUILD | |
parent | c81b3455112a3b09a8341fc8c45a91bd92c15a12 (diff) |
Mon Jun 6 22:47:16 UTC 2011
Diffstat (limited to 'community/ibus-qt/PKGBUILD')
-rw-r--r-- | community/ibus-qt/PKGBUILD | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/community/ibus-qt/PKGBUILD b/community/ibus-qt/PKGBUILD index fefb11e52..51d3beb3d 100644 --- a/community/ibus-qt/PKGBUILD +++ b/community/ibus-qt/PKGBUILD @@ -1,10 +1,11 @@ +# $Id: PKGBUILD 48593 2011-06-03 07:34:58Z andrea $ # Maintainer: Thomas Dziedzic < gostrc at gmail > # Contributor: garion < garion @ mailoo.org > -# Contributor:leemars +# Contributor: leemars pkgname=ibus-qt pkgver=1.3.1 -pkgrel=2 +pkgrel=3 pkgdesc='IBus qt library and IBus qt input method plugin' arch=('i686' 'x86_64') license=('LGPL') @@ -15,15 +16,16 @@ source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}-Source.tar.gz") md5sums=('769e8872ca8a59327b2073ce2f142589') build() { - cd ${pkgname}-${pkgver}-Source - - cmake -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev - + cd "${srcdir}" + mkdir build + cd build + + cmake ../${pkgname}-${pkgver}-Source \ + -DCMAKE_INSTALL_PREFIX=/usr make } package() { - cd ${pkgname}-${pkgver}-Source - - make DESTDIR=${pkgdir} install + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install } |