mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
1.3 KiB
Bash
35 lines
1.3 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=2022.04.08
|
|
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-certifi)
|
|
makedepends=(python-build python-installer python-setuptools python-wheel)
|
|
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')
|
|
source=($pkgname-$pkgver.tar.gz::https://github.com/yt-dlp/yt-dlp/releases/download/$pkgver/yt-dlp.tar.gz)
|
|
sha256sums=('a9ea3753977dd82f051f0674fbdc3eb5ff49a67246f4bd3cac5745702828d1db')
|
|
|
|
build() {
|
|
cd $pkgname
|
|
python -m build --wheel --no-isolation
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
}
|