blob: b23d978003e9ff878885a7fd43f3486d0cef20fe (
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
|
# Maintainer: Asthowen <contact@asthowen.fr>
# Maintainer: squitch <contact.squitch@gmail.com>
pkgname='python-alphacodersdownloader'
pkgver=0.1.4.3
pkgrel=1
pkgdesc='A script for download backgrounds on https://alphacoders.com written in Python.'
arch=('any')
url='https://github.com/Asthowen/AlphacodersDownloader/'
license=('GNUv3')
makedepends=('python-setuptools')
depends=('python>=3.6' 'python-aiohttp' 'python-aiofiles' 'python-setproctitle' 'python-beautifulsoup4')
source=("https://pypi.io/packages/source/A/AlphacodersDownloader/AlphacodersDownloader-$pkgver.tar.gz")
build() {
cd AlphacodersDownloader-$pkgver
python setup.py build
}
package() {
cd AlphacodersDownloader-$pkgver
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}
sha256sums=('5c978221665cb98e8075a5e89997932a2d4a33bc3ea878e500c11134d738fe0a')
|