forked from ports/contrib
21 lines
554 B
Plaintext
21 lines
554 B
Plaintext
# Description: CLI program to access YouTub and other data content
|
|
# URL: https://github.com/yt-dlp/yt-dlp
|
|
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
|
|
# Depends on: python3-setuptools
|
|
|
|
name=yt-dlp
|
|
version=2022.03.08.1
|
|
release=1
|
|
source=(https://github.com/${name}/${name}/releases/download/\
|
|
${version}/${name}.tar.gz)
|
|
#3.7 renames=(${name}-${version}.tar.gz)
|
|
|
|
build() {
|
|
cd ${name} #-${version}
|
|
|
|
install -D ${name} "${PKG}"/usr/bin/${name}
|
|
install -D -m 0644 ${name}.1 "${PKG}"/usr/share/man/man1/${name}.1
|
|
}
|
|
|
|
# s-sh-mode
|