blob: ecfe35b607cb7bb3acfc44d7c0948e0b774c98b6 (
plain)
1 # Description: CLI program to access YouTub and other data content
2 # URL: https://github.com/yt-dlp/yt-dlp
3 # Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
4 # Depends on: python3-setuptools
5
6 name=yt-dlp
7 version=2022.04.08
8 release=1
9 source=(https://github.com/${name}/${name}/releases/download/\
10 ${version}/${name}.tar.gz)
11 renames=(${name}-${version}.tar.gz)
12
13 build() {
14 cd ${name} #-${version}
15
16 install -D ${name} "${PKG}"/usr/bin/${name}
17 install -D -m 0644 ${name}.1 "${PKG}"/usr/share/man/man1/${name}.1
18 }
19
20 # s-sh-mode
|