summaryrefslogtreecommitdiff
path: root/community/kadu
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-01-24 00:06:07 -0800
committerroot <root@rshg054.dnsready.net>2013-01-24 00:06:07 -0800
commitcb33decb284fa3b08652b04f7290d9d4140a927f (patch)
treee7f2c99536d9a7bc61ca30107cf99cb22064b61f /community/kadu
parent91fea2e90c87b282a3bb39b080b8c51eb52cdbbe (diff)
Thu Jan 24 00:06:07 PST 2013
Diffstat (limited to 'community/kadu')
-rw-r--r--community/kadu/PKGBUILD21
1 files changed, 12 insertions, 9 deletions
diff --git a/community/kadu/PKGBUILD b/community/kadu/PKGBUILD
index e9d2c6f33..c4ce385b7 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')
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}
}