youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 90dc5e8693992f2e94dcf1d96ce069681778921c
parent 1a0648b4a9aa35254b1e9b65cf280e2014e6d317
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 30 Jan 2014 09:28:10 -0800

Merge pull request #2252 from matthewfranglen/master

Add antigen compatible plugin description
Diffstat:
Ayoutube-dl.plugin.zsh | 23+++++++++++++++++++++++
1 file changed, 23 insertions(+), 0 deletions(-)

diff --git a/youtube-dl.plugin.zsh b/youtube-dl.plugin.zsh @@ -0,0 +1,23 @@ +# This allows the youtube-dl command to be installed in ZSH using antigen. +# Antigen is a bundle manager. It allows you to enhance the functionality of +# your zsh session by installing bundles and themes easily. + +# Antigen documentation: +# http://antigen.sharats.me/ +# https://github.com/zsh-users/antigen + +# Install youtube-dl: +# antigen bundle rg3/youtube-dl +# Bundles installed by antigen are available for use immediately. + +# Update youtube-dl (and all other antigen bundles): +# antigen update + +# The antigen command will download the git repository to a folder and then +# execute an enabling script (this file). The complete process for loading the +# code is documented here: +# https://github.com/zsh-users/antigen#notes-on-writing-plugins + +# This specific script just adds the downloaded folder to the end of the $PATH, +# which allows the contained youtube-dl executable to be found. +export PATH=${PATH}:$(dirname $0)