blob: 14448303190aca391ae03d476d2f3ee56e23b14a (
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
38
39
40
41
42
43
44
45
46
47
48
49
|
# Maintainer: katt <magunasu.b97@gmail.com>
# Contributor: LLL2yu <lll2yu@protonmail.com>
pkgname=gallery-dl
pkgver=1.25.5
pkgrel=1
pkgdesc='Command-line program to download image-galleries and collections from several image hosting sites'
arch=(any)
url=https://github.com/mikf/gallery-dl
license=(GPL2)
depends=(python python-requests)
makedepends=(python-build python-installer python-setuptools python-wheel git)
optdepends=('ffmpeg: Pixiv Ugoira conversion'
'yt-dlp: Video downloads'
'youtube-dl: Video downloads'
'python-pysocks: SOCKS proxy support'
'python-brotli: Brotli compression support'
'python-brotlicffi: Brotli compression support'
'python-yaml: YAML configuration file support'
'python-toml: TOML configuration file support for Python<3.11'
'python-secretstorage: GNOME keyring passwords for --cookies-from-browser')
_tag=af41da9412529a4362924959a069a097928ad781 # git rev-parse v${pkgver}
source=(git+"${url}".git#tag="${_tag}"?signed)
validpgpkeys=(3E09F5908333DD83DBDCE7375680CA389D365A88) #Mike Fährmann
sha512sums=('SKIP')
pkgver() {
git -C ${pkgname} describe --tags | sed 's/^v//'
}
prepare() {
# Clean out old wheels etc.
git -C "${pkgname%-git}" clean -dfx
}
build() {
cd ${pkgname}
make
python -m build --wheel --no-isolation
}
check() {
make -C ${pkgname} test
}
package() {
cd ${pkgname}
python -m installer --destdir="$pkgdir" dist/*.whl
}
|