summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 298eb9b29f76c3b3b06def05a580980c1a1de5c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Maintainer: mathieui <mathieui[at]mathieui.net>
# Maintainer: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>

pkgname=poezio
pkgver=0.12
pkgrel=2
pkgdesc="A full-featured command-line IRC-like XMPP (Jabber) client"
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
url="https://poez.io"
license=('zlib')
depends=('python' 'python-slixmpp')
makedepends=('python-setuptools')
source=("https://dev.louiz.org/attachments/download/129/${pkgname}-${pkgver}.tar.gz")
optdepends=('python-pyinotify: Autoaway with screen plugin'
            'gnupg: GPG plugin'
            'figlet: ASCII art plugin'
            'python-potr-git: OTR plugin'
            'python-sphinx: Generating documentation'
            'python-aiohttp: http file upload plugin')

sha256sums=('7fdfe91109431a58152386096e367589616439ded6698ac4c48b4bdf05eac986')

build() {
    cd $pkgname-$pkgver
    python3 setup.py build
}

package() {
    cd $pkgname-$pkgver
    python3 setup.py install --skip-build --root="$pkgdir/" --optimize=1
}