2022-01-09 21:54:54 +00:00
|
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
# Contributor: Stefan Tatschner <stefan@rumpelsepp.org>
|
|
|
|
# Contributor: katt <magunasu.b97@gmail.com>
|
|
|
|
|
2022-03-08 23:18:44 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - removed makedepend on pandoc
|
2022-01-09 21:54:54 +00:00
|
|
|
|
|
|
|
pkgname=yt-dlp
|
2024-07-25 10:25:50 +00:00
|
|
|
pkgver=2024.07.25
|
2024-05-27 10:48:17 +00:00
|
|
|
pkgrel=1
|
2022-01-09 21:54:54 +00:00
|
|
|
pkgdesc='A youtube-dl fork with additional features and fixes'
|
|
|
|
arch=(any)
|
|
|
|
url='https://github.com/yt-dlp/yt-dlp'
|
|
|
|
license=(Unlicense)
|
2023-10-07 14:56:23 +00:00
|
|
|
depends=(python
|
2024-01-06 00:53:39 +00:00
|
|
|
python-certifi
|
2024-03-11 00:49:19 +00:00
|
|
|
python-requests
|
|
|
|
python-urllib3)
|
2023-10-07 14:56:23 +00:00
|
|
|
makedepends=(python-build
|
2024-03-11 00:49:19 +00:00
|
|
|
python-hatchling
|
|
|
|
python-installer)
|
2023-10-07 14:56:23 +00:00
|
|
|
checkdepends=(python-pytest)
|
2022-01-09 21:54:54 +00:00
|
|
|
optdepends=('ffmpeg: for video post-processing'
|
|
|
|
'rtmpdump: for rtmp streams support'
|
|
|
|
'atomicparsley: for embedding thumbnails into m4a files'
|
2022-02-06 21:41:59 +00:00
|
|
|
'aria2: for using aria2 as external downloader'
|
2023-08-27 17:41:31 +00:00
|
|
|
'python-mutagen: for embedding thumbnail in certain formats'
|
2024-01-06 00:53:39 +00:00
|
|
|
'python-pycryptodome: for decrypting AES-128 HLS streams and various other data'
|
2023-08-27 17:41:31 +00:00
|
|
|
'python-pycryptodomex: for decrypting AES-128 HLS streams and various other data'
|
|
|
|
'python-websockets: for downloading over websocket'
|
|
|
|
'python-brotli: brotli content encoding support'
|
|
|
|
'python-brotlicffi: brotli content encoding support'
|
|
|
|
'python-xattr: for writing xattr metadata'
|
|
|
|
'python-pyxattr: for writing xattr metadata (alternative option)'
|
|
|
|
'phantomjs: for extractors with javascript code'
|
|
|
|
'python-secretstorage: For -cookies-from-browser to access the GNOME keyring while decrypting cookies of Chromium-based browsers')
|
2022-01-09 21:54:54 +00:00
|
|
|
source=($pkgname-$pkgver.tar.gz::https://github.com/yt-dlp/yt-dlp/releases/download/$pkgver/yt-dlp.tar.gz)
|
2024-07-25 10:25:50 +00:00
|
|
|
sha256sums=('f34f396cd100f9a68ad6ffbb0d09932011e8f6896d01a177f3c6610b39b53488')
|
2022-01-09 21:54:54 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname
|
2022-03-08 23:18:44 +00:00
|
|
|
python -m build --wheel --no-isolation
|
2022-01-09 21:54:54 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 14:56:23 +00:00
|
|
|
check() {
|
|
|
|
cd $pkgname
|
|
|
|
pytest -v -m "not download"
|
|
|
|
}
|
|
|
|
|
2022-01-09 21:54:54 +00:00
|
|
|
package() {
|
|
|
|
cd $pkgname
|
2022-03-08 23:18:44 +00:00
|
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
2022-01-09 21:54:54 +00:00
|
|
|
}
|