blob: e26d4a36b5a86a2500d4f3aa2b2d5ed07518a138 (
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
|
# Maintainer: jakob <grandchild@gmx.net>
_pkgname=semaphore-bot
pkgname=python-${_pkgname}
pkgver=0.17.0
pkgrel=1
pkgdesc="A simple (rule-based) bot library for Signal Private Messenger."
arch=(x86_64 i686 aarch64)
url="https://github.com/lwesterhof/semaphore"
license=('AGPL3')
depends=(
python
signald-git
python-anyio
python-attrs
python-dateutil
)
makedepends=('python-setuptools')
source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/$_pkgname/$_pkgname-$pkgver.tar.gz")
sha256sums=('df36faf8774e07af98ad545c9881eca2414a50e94598a0a854d965bccf9a3974')
package() {
cd "$_pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
|