summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b709a76a8f11012eef34418d1654a704c3255a1c (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
# Maintainer: mathieui <mathieui[at]mathieui.net>

pkgname=poezio
pkgrel=2
pkgver=0.11
pkgdesc="A full-featured command-line irc-like xmpp (jabber) client"
arch=('i686' 'x86_64' 'armv7h')
url="https://poez.io"
license=('zlib')
depends=('python>=3.4' 'python-slixmpp>=1.2.4')
makedepends=('python-setuptools')
source=("https://dev.louiz.org/attachments/download/118/${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')

sha512sums=('1df750f889c898ea3f463cf9de405d47b53f8d6ef9c75cdc6a8d5279ea4115033a431ff20525601603e1eea0e59355971b400fb5de2bc20df491003928a7064d')

build() {
    cd "$srcdir/$pkgname-$pkgver"
    python3 setup.py build_ext --inplace
}

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