blob: 77b403c2a3accf0359628ef4d670ffb5313fdb6d (
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
|
# Maintainer: Christian Zugno < chriszugno [at] gmail [dot] com >
# Contributor: Kazuo Teramoto < kaz.rag [at] gmail [dot] com >
pkgname=stig
pkgver=0.12.10a0
pkgrel=1
pkgdesc='TUI and CLI client for the Transmission daemon'
url='https://github.com/rndusr/stig'
depends=('python' 'python-urwid' 'python-urwidtrees' 'python-aiohttp'
'python-pyxdg' 'python-blinker' 'python-natsort' 'python-async-timeout')
makedepends=('python-setuptools')
optdepends=('python-pprofile: profiling'
'python-setproctitle: prettifies the process name'
'python-aiohttp-socks: proxy support')
checkdepends=('python-asynctest')
license=('GPL')
arch=('any')
source=("stig-${pkgver}.tar.gz::https://github.com/rndusr/stig/archive/v${pkgver}.tar.gz")
sha256sums=('69105ed6ae6a8bd4450d37516368318b1c069b78fe8734171694e729fee2dc56')
build() {
cd "stig-${pkgver}"
python setup.py build
}
package() {
cd "stig-${pkgver}"
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
}
|