diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-01-24 10:30:46 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-01-24 10:30:46 -0300 |
commit | 328b5407de9f088d32c429b1b37f6efde3da06f8 (patch) | |
tree | 99b9a1286dd5d2b2a4f8a9ab4d4976b2a92cdf04 /community/kadu | |
parent | bc45ad1bcb68d9ab4af8a7419beb52606ff4c7b2 (diff) | |
parent | 570e3637e2a4ba372dabbbbb8953d7b4ccdcaa39 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/dee/PKGBUILD
community/kadu/PKGBUILD
extra/boost/PKGBUILD
extra/calligra/PKGBUILD
extra/mesa/PKGBUILD
extra/php/PKGBUILD
extra/qt/PKGBUILD
extra/webkitgtk/PKGBUILD
extra/xorg-xsetroot/PKGBUILD
Diffstat (limited to 'community/kadu')
-rw-r--r-- | community/kadu/PKGBUILD | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/community/kadu/PKGBUILD b/community/kadu/PKGBUILD index 79275b998..a3a29e6ae 100644 --- a/community/kadu/PKGBUILD +++ b/community/kadu/PKGBUILD @@ -1,34 +1,37 @@ -# $Id: PKGBUILD 76360 2012-09-16 14:56:37Z bpiotrowski $ +# $Id: PKGBUILD 82749 2013-01-23 20:16:18Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Mateusz Herych # Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> pkgname=kadu pkgver=0.12.3 -pkgrel=1 -pkgdesc='A Qt-based Jabber/XMPP and Gadu-Gadu client' +pkgrel=2 +pkgdesc='Qt-based Jabber/XMPP and Gadu-Gadu client' arch=('i686' 'x86_64' 'mips64el') url='http://www.kadu.net/' license=('GPL') -depends=('libgadu' 'libxss' 'enchant' 'phonon' 'qca-ossl' 'libidn' 'libmpdclient' 'qtwebkit' 'xdg-utils') +depends=('libgadu' 'libxss' 'enchant' 'phonon' 'qca-ossl' + 'libidn' 'libmpdclient' 'qtwebkit' 'xdg-utils') makedepends=('cmake' 'libao' 'libsndfile' 'libxtst' 'curl') install=kadu.install source=(http://download.kadu.im/stable/$pkgname-$pkgver.tar.bz2) -md5sums=('c5d6f0bd384cd96090819ea018eb8ad8') +sha256sums=('d607bbd0d00b01bfb70dd15f15c8be4076896a935041651e67a3887ad12ab8a8') build() { cd $srcdir mkdir build cd build + cmake ../$pkgname-$pkgver \ - -DCMAKE_INSTALL_PREFIX=/usr + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib make } package() { cd $srcdir/build - make DESTDIR=$pkgdir install - mv $pkgdir/usr/sdk "$pkgdir"/usr/share/kadu/sdk + make DESTDIR=$pkgdir LIBDIR=/usr/lib install + + mv $pkgdir/usr/sdk $pkgdir/usr/share/kadu/sdk rm -rf $pkgdir/usr/{lib,include}/{libgadu*,pkgconfig} - rm -rf $pkgdir/usr/share/kadu/{HISTORY,README} } |