blob: fedf09d9f5802d294cb3a27bf32a40b1eaa4f0fb (
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
|
# Maintainer: RAI SULEMAN <cerebellumdigital@email.com>
pkgname=ytdl
pkgver=1.0.0
pkgrel=1
pkgdesc="An interactive and colorful Bash wrapper for yt-dlp with parallel/playlist support."
arch=('any')
url="https://github.com/codewithmoss/ytdl"
license=('MIT')
depends=('yt-dlp' 'aria2' 'jq' 'bash')
source=("${pkgname}.sh::https://raw.githubusercontent.com/codewithmoss/ytdl/main/ytdl.sh")
md5sums=('SKIP')
package() {
install -Dm755 "${srcdir}/${pkgname}.sh" "${pkgdir}/usr/bin/${pkgname}"
}
post_install() {
echo "✅ ytdl installed successfully!"
echo "Run 'ytdl' to download YT videos in parallel, sequence or single."
echo "For help, visit: https://github.com/codewithmoss/ytdl"
}
|