blob: acbfa041272c8d9245d5d832fd7f34a1b5959167 (
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
|
# Contributor: Galen Abell <galen@galenabell.com>
# Maintainer: Galen Abell <galen@galenabell.com>
pkgname=toot
_pyname=toot
pkgver=0.26.0
pkgrel=0
pkgdesc="mastodon cli & tui"
url="https://github.com/ihabunek/toot"
arch="noarch"
license="GPL-3.0-only"
depends="python3 py3-setuptools py3-requests py3-beautifulsoup4 py3-wcwidth py3-urwid"
makedepends="python3-dev"
checkdepends="py3-pytest"
source="
https://files.pythonhosted.org/packages/source/${_pyname%${_pyname#?}}/$_pyname/$_pyname-$pkgver.tar.gz
01-skip-version-test.patch
"
build() {
python3 setup.py build
}
check() {
pytest -v
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="c90cd81835ea60882d5e7db68ea7d69b5a3fe657b5b5c34c81daf4e5b672d66181cfb724e15e1a3eb12aad167584d82ba782b169ab294046979454de762a914c toot-0.26.0.tar.gz
584bc6ec6a44c6b3a77430491fbb5a4f57ab71a4476b3fd93c1ea267f729262b69e115ada2f84696f9e93b0522ef682872dd7ba6585dfe2c20a0529e733d742e 01-skip-version-test.patch"
|