youtube-dl

master
Anthony Axenov 2022-10-05 11:30:31 +08:00
parent 05e6b8195b
commit 4637b069f9
Signed by: anthony
GPG Key ID: EA9EC32FF7CCD4EC
2 changed files with 18 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# Autogenerated at 04.10.2022 13:10 using ./gen-makefile
# Autogenerated at 05.10.2022 11:23 using ./gen-makefile
.DEFAULT_GOAL := help
#===============================================
@ -170,6 +170,10 @@ vivaldi:
wine:
@./install/wine
# Install youtube-dl
youtube-dl:
@./install/youtube-dl
# Install zint (latest)
zint:
@./install/zint

13
install/youtube-dl 100755
View File

@ -0,0 +1,13 @@
#!/bin/bash
##makedesc: Install youtube-dl
# https://github.com/ytdl-org/youtube-dl#installation
echo
echo "==============================================="
echo "Installing youtube-dl..."
echo "==============================================="
echo
sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o "${HOME}/.local/bin/youtube-dl"
sudo chmod +rx "${HOME}/.local/bin/youtube-dl"