diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2011-12-23 16:36:50 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2011-12-23 16:36:50 +0100 |
commit | 1938875bc4b7e7768d44d75a7ad6b0c31975ca47 (patch) | |
tree | 8e198cd946186688ee37aad4bc52d056a20d467e /community/kadu | |
parent | 5bd492fb549003a5f8e22b4792a33b35e79f0531 (diff) | |
parent | 34e6c976d28892a7bd3f7578f10fcfa57865472f (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/google-gadgets/PKGBUILD
community/kvirc/PKGBUILD
community/qmc2/PKGBUILD
extra/arora/PKGBUILD
extra/dhcp/PKGBUILD
extra/gtk-xfce-engine/PKGBUILD
extra/libreoffice/PKGBUILD
extra/monodevelop/PKGBUILD
extra/php/PKGBUILD
extra/pyqt/PKGBUILD
extra/qt/PKGBUILD
extra/qt3/PKGBUILD
extra/unixodbc/PKGBUILD
extra/xulrunner/PKGBUILD
multilib/wine/PKGBUILD
testing/nilfs-utils/PKGBUILD
Diffstat (limited to 'community/kadu')
-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 ce6efc4cb..50f700322 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' 'mips64el') 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}" } |