blob: 741afb8c36ad7089ea636f4ce835c0a3257ffef9 (
plain) (
blame)
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
|
# Contributor: Kiyoshi Aman <adelie@aerdan.vulpine.house>
# Maintainer: Kiyoshi Aman <adelie@aerdan.vulpine.house>
pkgname=toot
pkgver=0.26.0
pkgrel=0
pkgdesc="Python 3 curses-based client for Mastodon API"
url="https://toot.readthedocs.io"
arch="noarch"
license="GPL-3.0-only"
depends="python3 py3-beautifulsoup4 py3-requests"
source="https://github.com/ihabunek/toot/releases/download/$pkgver/toot-$pkgver.tar.gz"
build() {
python3 setup.py build
}
check() {
python3 setup.py check
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="c90cd81835ea60882d5e7db68ea7d69b5a3fe657b5b5c34c81daf4e5b672d66181cfb724e15e1a3eb12aad167584d82ba782b169ab294046979454de762a914c toot-0.26.0.tar.gz"
|