PKGBUILDs/extra/yt-dlp/PKGBUILD

36 lines
1.3 KiB
Bash
Raw Normal View History

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
2023-07-07 00:28:15 +00:00
pkgver=2023.07.06
2023-06-21 12:37:30 +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)
2022-04-08 18:44:23 +00:00
depends=(python-certifi)
2022-03-08 23:18:44 +00:00
makedepends=(python-build python-installer python-setuptools python-wheel)
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'
'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')
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)
2023-07-07 00:28:15 +00:00
sha256sums=('6d2115b84b6c11867f92cf4c23705b536bfa0ba9d538b1885f52da6756f8c980')
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
}
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
}