]> jfr.im git - yt-dlp.git/blame - Makefile
correction on the test
[yt-dlp.git] / Makefile
CommitLineData
85f76ac9 1all: youtube-dl README.md youtube-dl.1 youtube-dl.bash-completion LATEST_VERSION
85f76ac9 2# TODO: re-add youtube-dl.exe, and make sure it's 1. safe and 2. doesn't need sudo
4618f3da 3
85f76ac9
PH
4clean:
5 rm -f youtube-dl youtube-dl.exe youtube-dl.1 LATEST_VERSION
4618f3da 6
0e841bdc 7PREFIX=/usr/local
dce10884 8install: youtube-dl youtube-dl.1 youtube-dl.bash-completion
0e841bdc
FV
9 install -m 755 --owner root --group root youtube-dl $(PREFIX)/bin/
10 install -m 644 --owner root --group root youtube-dl.1 $(PREFIX)/man/man1
dce10884
FV
11 install -m 644 --owner root --group root youtube-dl.bash-completion /etc/bash_completion.d/youtube-dl
12
85f76ac9 13.PHONY: all clean install README.md youtube-dl.bash-completion
20326b8b 14# TODO un-phony README.md and youtube-dl.bash_completion by reading from .in files and generating from them
dce10884
FV
15
16youtube-dl: youtube_dl/*.py
17 zip --quiet --junk-paths youtube-dl youtube_dl/*.py
18 echo '#!/usr/bin/env python' > youtube-dl
19 cat youtube-dl.zip >> youtube-dl
20 rm youtube-dl.zip
85f76ac9 21 chmod a+x youtube-dl
dce10884
FV
22
23youtube-dl.exe: youtube_dl/*.py
24 bash devscripts/wine-py2exe.sh build_exe.py
4618f3da 25
646b885c 26README.md: youtube_dl/*.py
20326b8b 27 @options=$$(COLUMNS=80 python -m youtube_dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/## \1/') && \
cfcec693
FV
28 header=$$(sed -e '/.*# OPTIONS/,$$ d' README.md) && \
29 footer=$$(sed -e '1,/.*# FAQ/ d' README.md) && \
4618f3da 30 echo "$${header}" > README.md && \
66e87777 31 echo >> README.md && \
cfcec693 32 echo '# OPTIONS' >> README.md && \
4618f3da 33 echo "$${options}" >> README.md&& \
66e87777 34 echo >> README.md && \
cfcec693 35 echo '# FAQ' >> README.md && \
4618f3da
PH
36 echo "$${footer}" >> README.md
37
dce10884 38youtube-dl.1: README.md
cfcec693
FV
39 pandoc -s -w man README.md -o youtube-dl.1
40
dce10884 41youtube-dl.bash-completion: README.md
ce7b2a40
FV
42 @options=`egrep -o '(--[a-z-]+) ' README.md | sort -u | xargs echo` && \
43 content=`sed "s/opts=\"[^\"]*\"/opts=\"$${options}\"/g" youtube-dl.bash-completion` && \
44 echo "$${content}" > youtube-dl.bash-completion
4618f3da 45
646b885c 46LATEST_VERSION: youtube_dl/__init__.py
20326b8b 47 python -m youtube_dl --version > LATEST_VERSION
b387fb03 48
49test:
6d9c22cd 50 nosetests2 test
434d60cd 51
52.PHONY: default compile update update-latest update-readme test clean