blob: dd412a34a7ada8a1347ff83f4745a3146fa34a17 (
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
32
33
34
35
36
37
38
39
40
|
# Maintainer: Tim Henkes <me+aur@syndace.dev>
# Contributor: Maxime "pep" Buquet <archlinux@bouah.net>
pkgname="poezio-omemo"
pkgver=0.9.1
pkgrel=1
pkgdesc="OMEMO plugin for poezio"
arch=("any")
url="https://codeberg.org/poezio/poezio-omemo"
license=("GPL-3.0-only")
depends=(
"poezio"
"python"
"python-oldmemo"
"python-omemo"
"python-slixmpp"
"python-slixmpp-omemo"
)
makedepends=(
"python-build"
"python-installer"
"python-setuptools"
"python-wheel"
)
source=("${pkgname}-${pkgver}.tar.gz::https://codeberg.org/poezio/poezio-omemo/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=("a6ec15acebc478cee61fcf48ab786faaef71869297290ed55fabc2b232532b3b")
prepare() {
mv "${pkgname}" "${pkgname}-${pkgver}"
}
build() {
cd "${pkgname}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${pkgname}-${pkgver}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
|