diff options
author | root <root@rshg054.dnsready.net> | 2011-12-22 23:15:05 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-22 23:15:05 +0000 |
commit | 34e6c976d28892a7bd3f7578f10fcfa57865472f (patch) | |
tree | c3bd6b5146aa6393df096632e92c57d0fcd4e85a /community/kadu/PKGBUILD | |
parent | 69d24275e4d5296a5f02e4c4d0fc438a80d159b8 (diff) |
Thu Dec 22 23:15:04 UTC 2011
Diffstat (limited to 'community/kadu/PKGBUILD')
-rw-r--r-- | community/kadu/PKGBUILD | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/community/kadu/PKGBUILD b/community/kadu/PKGBUILD index dabc9abfa..d575a5d51 100644 --- a/community/kadu/PKGBUILD +++ b/community/kadu/PKGBUILD @@ -1,21 +1,22 @@ -# $Id: PKGBUILD 58524 2011-11-13 15:44:01Z andrea $ -# Maintainer: Mateusz Herych +# $Id: PKGBUILD 61079 2011-12-21 20:51:06Z andrea $ +# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com> +# Contributor: Mateusz Herych # Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> pkgname=kadu pkgver=0.10.1 -pkgrel=1 +pkgrel=3 pkgdesc="A Qt-based Jabber/XMPP and Gadu-Gadu client" arch=('i686' 'x86_64') url="http://www.kadu.net/" license=('GPL') -depends=('libgadu' 'libxss' 'aspell' 'phonon' 'qca-ossl' 'libidn' 'libmpdclient') +depends=('libgadu' 'libxss' 'aspell' 'phonon' 'qca-ossl' 'libidn' 'libmpdclient' 'qtwebkit') makedepends=('cmake' 'libao' 'libsndfile' 'libxtst' 'curl') -source=(http://www.kadu.net/download/stable/$pkgname-$pkgver.tar.bz2) +source=(http://download.kadu.im/stable/$pkgname-$pkgver.tar.bz2) md5sums=('6211a9a9e02d645268cbf055892601a0') build() { - cd $srcdir + cd "$srcdir" mkdir build cd build cmake ../${pkgname}-${pkgver} \ @@ -24,8 +25,8 @@ build() { } package() { - cd $srcdir/build - make DESTDIR=$pkgdir install - rm -rf $pkgdir/usr/{lib,include}/{libgadu*,pkgconfig} - rm -rf $pkgdir/usr/share/kadu/{HISTORY,README} + cd "$srcdir/build" + make DESTDIR="$pkgdir" install + rm -rf "$pkgdir/usr/{lib,include}/{libgadu*,pkgconfig}" + rm -rf "$pkgdir/usr/share/kadu/{HISTORY,README}" } |