diff options
Diffstat (limited to 'community/kadu/PKGBUILD')
-rw-r--r-- | community/kadu/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/kadu/PKGBUILD b/community/kadu/PKGBUILD new file mode 100644 index 000000000..1d3a46aaa --- /dev/null +++ b/community/kadu/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 42953 2011-03-22 21:04:40Z mherych $ +# Maintainer: Mateusz Herych +# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> + +pkgname=kadu +pkgver=0.9.0 +pkgrel=2 +pkgdesc="A Qt-based Gadu-Gadu client" +arch=('i686' 'x86_64') +url="http://www.kadu.net/" +license=('GPL') +depends=('libgadu' 'libxss' 'aspell' 'phonon' 'qca-ossl' 'libidn') +makedepends=('cmake' 'libao' 'libsndfile' 'libxtst' 'curl') +source=(http://www.kadu.net/download/stable/$pkgname-$pkgver.tar.bz2) +md5sums=('9bd6f39235acea4287664a0bff40b10a') + +build() { + cd $srcdir/kadu-$pkgver + cmake . -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd $srcdir/kadu-$pkgver + make DESTDIR=$pkgdir install + rm -rf $pkgdir/usr/{lib,include}/{libgadu*,pkgconfig} + rm -rf $pkgdir/usr/share/kadu/{HISTORY,README} +} |