blob: 82194664880a9547ef34decc0fb915662088366c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=python-dottorrent
_pkgname=dottorrent
pkgver=1.9.2
pkgrel=2
arch=('x86_64')
url='https://github.com/kz26/dottorrent'
license=('MIT')
depends=('python' 'python-humanfriendly' 'python-pyqt5' 'python-pyqt5-sip' 'python-bencoder-pyx')
makedepends=('python-setuptools' 'git')
pkgdesc="High-level Python 3 library for creating .torrent files"
source=("$_pkgname-$pkgver::git+https://github.com/kz26/dottorrent#tag=v$pkgver")
sha256sums=('12e5569832d4d65ac68f0fb8e13ab79f47e12f846b628b28f0b35f0d73ecd172')
build() {
cd $_pkgname-$pkgver
python setup.py build
}
package() {
cd $_pkgname-$pkgver
python setup.py install --root="$pkgdir"
}
|