# Depends on python

# Exit on error:
set -e

wget https://yt-dl.org/downloads/2013.04.03/youtube-dl \
    --no-check-certificate

# 2013.04.03 works well as of 8 january 2014
# and does not need ssl python module

install -m755 youtube-dl /usr/bin

exit 0
