blob: cae0f3420d6ef01c4e9e4ebfd191317da721d7ce (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Maintainer: Frederik “Freso” S. Olesen <archlinux@freso.dk>
# Contributor: Igor Dyatlov <dyatlov.igor@protonmail.com>
pkgname=twitch-dl
pkgver=2.9.2
pkgrel=1
pkgdesc="Twitch video downloader that use multiple concurrent connections"
arch=('any')
url="https://github.com/ihabunek/twitch-dl"
license=('GPL3')
depends=(
ffmpeg
python-click
python-httpx
python-m3u8)
makedepends=(
python-setuptools
python-setuptools-scm
# Documentation building
mdbook
python-pyaml
scdoc
# PEP 517 build requirements
python-build
python-installer
python-wheel)
checkdepends=('python-pytest')
source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
b2sums=('bf44be789b81026ef2069981e78b972817f9e16a71ace80a92d002fca2141a1c0fb638959e8ba5d750f7ce951b2fe06f682d721f9c74fe03ed786d231af96174')
prepare() {
cd "$pkgname-$pkgver"
make clean
}
build() {
cd "$pkgname-$pkgver"
export SETUPTOOLS_SCM_PRETEND_VERSION="$pkgver"
python -m build --wheel --no-isolation
# Make later commands use the built module
export PYTHONPATH="$PWD/build/lib"
make man docs
# Make ad hoc `twitch-dl` script
echo '#!'$(which python) > twitch-dl
cat build/lib/twitchdl/__main__.py >> twitch-dl
chmod +x twitch-dl
# Generate completion files
_shells=(bash fish zsh)
for _shell in "${_shells[@]}"; do
_TWITCH_DL_COMPLETE="${_shell}_source" ./twitch-dl > "$pkgname.${_shell}"
done
}
check() {
cd "$pkgname-$pkgver"
export PYTHONPATH="$PWD/build/lib"
make test
}
package() {
cd "$pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 twitch-dl.1.man "$pkgdir"/usr/share/man/man1/twitch-dl.1
install -Dm644 -t "$pkgdir"/usr/share/doc/"$pkgname" {CHANGELOG,TODO,README}.md
mv book "$pkgdir"/usr/share/doc/"$pkgname"/
install -Dm644 -t "$pkgdir"/usr/share/fish/vendor_completions.d "$pkgname".fish
install -Dm644 -T "$pkgname".bash "$pkgdir"/usr/share/bash-completion/completions/"$pkgname"
install -Dm644 -T "$pkgname".zsh "$pkgdir"/usr/share/zsh/site-functions/_"$pkgname"
}
|