blob: 6964722d8537f62883a6d42117964e078269989a (
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
|
# Maintainer: stabldev <thestabldev@gmail.com>
pkgname=torrra
pkgver=2.0.7
pkgrel=1
pkgdesc="A Python tool that lets you find and download torrents without leaving your CLI."
arch=("any")
url="https://github.com/stabldev/torrra"
license=("MIT")
depends=(
"libtorrent-rasterbar"
"python"
"python-click"
"python-diskcache"
"python-httpx"
"python-platformdirs"
"python-textual"
"python-tomli"
"python-tomli-w"
)
makedepends=(
"python-build"
"python-hatchling"
"python-installer"
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('b5bfad5e18842943a0ae253f7d00dc5b54e6041e3d652cbfcd05e10230a65565')
build() {
cd "$pkgname-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}
|