mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
51 lines
1.9 KiB
Bash
51 lines
1.9 KiB
Bash
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
# Contributor: Stefan Tatschner <stefan@rumpelsepp.org>
|
|
# Contributor: katt <magunasu.b97@gmail.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - removed makedepend on pandoc
|
|
|
|
pkgname=yt-dlp
|
|
pkgver=2023.10.07
|
|
pkgrel=1
|
|
pkgdesc='A youtube-dl fork with additional features and fixes'
|
|
arch=(any)
|
|
url='https://github.com/yt-dlp/yt-dlp'
|
|
license=(Unlicense)
|
|
depends=(python
|
|
python-certifi)
|
|
makedepends=(python-build
|
|
python-installer
|
|
python-setuptools
|
|
python-wheel)
|
|
checkdepends=(python-pytest)
|
|
optdepends=('ffmpeg: for video post-processing'
|
|
'rtmpdump: for rtmp streams support'
|
|
'atomicparsley: for embedding thumbnails into m4a files'
|
|
'aria2: for using aria2 as external downloader'
|
|
'python-mutagen: for embedding thumbnail in certain formats'
|
|
'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')
|
|
source=($pkgname-$pkgver.tar.gz::https://github.com/yt-dlp/yt-dlp/releases/download/$pkgver/yt-dlp.tar.gz)
|
|
sha256sums=('39d1a69242cc8235fe1f3e387cd383aae239e563796efb9de0f516133ee14870')
|
|
|
|
build() {
|
|
cd $pkgname
|
|
python -m build --wheel --no-isolation
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname
|
|
pytest -v -m "not download"
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
}
|