blob: 712f4c2c9354d2c3b34e1c86735d9cebe53c8842 (
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
|
# Maintainer: Serene-Arc <https://aur.archlinux.org/account/serene-arc>
_pkgname="bulk-downloader-for-reddit"
pkgname=python-bdfr
pkgver=2.6.2
pkgrel=1
pkgdesc="Bulk downloader for Reddit"
arch=('any')
url="https://github.com/aliparlakci/bulk-downloader-for-reddit"
depends=(
'python'
'python-beautifulsoup4'
'python-dict2xml'
'python-pip'
'python-praw'
'python-yaml'
'yt-dlp'
)
makedepends=(
'python-build'
'python-installer'
'python-wheel'
'python-setuptools'
)
license=('GPL3')
source=("$pkgname-$pkgver.tar.gz::https://github.com/aliparlakci/bulk-downloader-for-reddit/archive/refs/tags/v2.6.2.tar.gz")
md5sums=("4b63ffa24191328a3e8fdedd28894082")
build() {
cd "$srcdir/$_pkgname-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/$_pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|