blob: 40396d85b1a34b150fdcebbdad259bafb01f2cec (
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
|
# $Id$
# Maintainer: Anthony Ruhier <anthony.ruhier@gmail.com>
pkgname=torrents_dispatcher
pkgver=0.0.3
pkgrel=1
pkgdesc='Dispatch your torrents between multiple torrent clients'
arch=('any')
url='https://github.com/Anthony25/torrents_dispatcher'
license=('BSD')
depends=('python-appdirs' 'python-argparse' 'python-bencodepy' 'python-setuptools')
source=("https://github.com/Anthony25/torrents_dispatcher/archive/${pkgver}.tar.gz")
sha256sums=('d5ec105578610e98f0e8c5a175e7d9622146cbef66d67d61ace2804880353ab5')
build() {
cd torrents_dispatcher-${pkgver}
python3 setup.py build
}
package() {
cd torrents_dispatcher-${pkgver}
python3 setup.py install --root="${pkgdir}" --optimize='1'
}
# vim: ts=2 sw=2 et:
|