Date: Monday, July 23, 2018 @ 17:15:18 Author: foutrelis Revision: 363184
archrelease: copy trunk to community-staging-any Added: gajim/repos/community-staging-any/ gajim/repos/community-staging-any/PKGBUILD (from rev 363183, gajim/trunk/PKGBUILD) ----------+ PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) Copied: gajim/repos/community-staging-any/PKGBUILD (from rev 363183, gajim/trunk/PKGBUILD) =================================================================== --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-23 17:15:18 UTC (rev 363184) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Eric BĂ©langer <e...@archlinux.org> + +pkgname=gajim +pkgver=1.0.3 +pkgrel=3 +pkgdesc="Full featured and easy to use XMPP (Jabber) client" +arch=('any') +url="https://www.gajim.org/" +license=('GPL3') +depends=('gtk3' 'python-cairo' 'python-dbus' 'python-gobject' 'python-keyring' 'python-nbxmpp' + 'python-pyasn1' 'python-pyopenssl') +makedepends=('intltool') +optdepends=('alsa-utils: play notification sounds' + 'avahi: serverless chatting with autodetected clients in a local network' + 'farstream: start audio and video chat' + 'geoclue2: share current location' + 'gnome-keyring: password storage' + 'gspell: spellchecking of composed messages' + 'gupnp-igd: request your router to forward port for file transfer' + 'libxss: measure idle time, in order to set auto status' + 'python-crypto: encrypting chat messages' + 'python-docutils: generate XHTML output from RST code' + 'python-gnupg: encrypting chat messages with OpenPGP' + 'python-pillow: support of WebP avatars') +source=(https://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2) +sha1sums=('82e103e35ce29ea7b587ef55b8d8da1c013ddfcb') + +build() { + cd ${pkgname}-${pkgver} + python setup.py build +} + +package() { + cd ${pkgname}-${pkgver} + python setup.py install --root="$pkgdir" --optimize=1 +}