diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-07 11:25:20 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-07 11:25:20 -0300 |
commit | ea72eac0bc0d1abf4f6008383a8cf96bff0476da (patch) | |
tree | c6d9bfd076e21295939291fbf187f33d49de5538 /community/ibus-qt | |
parent | 6ba17fd7084afd34f49d65a2d214a0c9617b4cd4 (diff) | |
parent | 93a9cde1226d0c82849bc71ff4d481d3d2698dc1 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/avidemux/PKGBUILD
extra/kdesdk/PKGBUILD
extra/swh-plugins/PKGBUILD
kde-unstable/kdesdk/PKGBUILD
multilib/nspluginwrapper/PKGBUILD
Diffstat (limited to 'community/ibus-qt')
-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 794ac6fdc..9b0a52782 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' 'mips64el') 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 } |