diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-05-06 11:13:51 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-05-06 11:13:51 +0200 |
commit | a86ff663185661ee304bb1f6d00d982102dd706d (patch) | |
tree | 06520d9024b40745b94f02d0d3419386e6496863 /community/kadu | |
parent | ce32dcab8e4baa2afe51fd3b7a858a840372b0a5 (diff) | |
parent | ffb692bf2696e7ebedd19bcd55ba253e21cb732d (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/apitrace/PKGBUILD
community/mksh/PKGBUILD
community/net6/PKGBUILD
community/xapian-core/PKGBUILD
extra/garcon/PKGBUILD
extra/mesa/PKGBUILD
extra/scim/PKGBUILD
extra/virtuoso/PKGBUILD
extra/xfce4-appfinder/PKGBUILD
extra/xfce4-panel/PKGBUILD
extra/xfwm4/PKGBUILD
Diffstat (limited to 'community/kadu')
-rw-r--r-- | community/kadu/PKGBUILD | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/community/kadu/PKGBUILD b/community/kadu/PKGBUILD index a3a29e6ae..52b2303f9 100644 --- a/community/kadu/PKGBUILD +++ b/community/kadu/PKGBUILD @@ -1,24 +1,27 @@ -# $Id: PKGBUILD 82749 2013-01-23 20:16:18Z bpiotrowski $ +# $Id: PKGBUILD 89897 2013-05-05 09:24:04Z 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=2 +pkgrel=3 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') -makedepends=('cmake' 'libao' 'libsndfile' 'libxtst' 'curl') +makedepends=('cmake' 'libao' 'libsndfile' 'libxtst' 'curl' 'optipng') install=kadu.install source=(http://download.kadu.im/stable/$pkgname-$pkgver.tar.bz2) sha256sums=('d607bbd0d00b01bfb70dd15f15c8be4076896a935041651e67a3887ad12ab8a8') +prepare() { + find -name '*.png' -exec optipng -quiet -force -fix {} + +} + build() { - cd $srcdir mkdir build cd build @@ -29,7 +32,7 @@ build() { } package() { - cd $srcdir/build + cd build make DESTDIR=$pkgdir LIBDIR=/usr/lib install mv $pkgdir/usr/sdk $pkgdir/usr/share/kadu/sdk |