Merge branch 'joehillen/master' - pull request #381
[youtube-dl] / Makefile
1 default: update
2
3 update: compile update-readme update-latest
4
5 update-latest:
6         ./youtube-dl.dev --version > LATEST_VERSION
7
8 update-readme:
9         @options=$$(COLUMNS=80 ./youtube-dl.dev --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
10                 header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
11                 footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
12                 echo "$${header}" > README.md && \
13                 echo >> README.md && \
14                 echo '## OPTIONS' >> README.md && \
15                 echo "$${options}" >> README.md&& \
16                 echo >> README.md && \
17                 echo '## FAQ' >> README.md && \
18                 echo "$${footer}" >> README.md
19
20 compile:
21         zip --quiet --junk-paths youtube-dl youtube_dl/*.py
22         echo '#!/usr/bin/env python' > youtube-dl
23         cat youtube-dl.zip >> youtube-dl
24         rm youtube-dl.zip
25
26 install: youtube-dl
27         install -m 755 --owner root --group root youtube-dl /usr/local/bin/
28
29 .PHONY: default compile update update-latest update-readme install