Document configuration
[youtube-dl] / Makefile
1 all: youtube-dl README.md youtube-dl.1 youtube-dl.bash-completion LATEST_VERSION
2 # TODO: re-add youtube-dl.exe, and make sure it's 1. safe and 2. doesn't need sudo
3
4 clean:
5         rm -f youtube-dl youtube-dl.exe youtube-dl.1 LATEST_VERSION
6
7 PREFIX=/usr/local
8 BINDIR=$(PREFIX)/bin
9 MANDIR=$(PREFIX)/man
10 SYSCONFDIR=/etc
11
12 install: youtube-dl youtube-dl.1 youtube-dl.bash-completion
13         install -d $(DESTDIR)$(BINDIR)
14         install -m 755 youtube-dl $(DESTDIR)$(BINDIR)
15         install -d $(DESTDIR)$(MANDIR)/man1
16         install -m 644 youtube-dl.1 $(DESTDIR)$(MANDIR)/man1
17         install -d $(DESTDIR)$(SYSCONFDIR)/bash_completion.d
18         install -m 644 youtube-dl.bash-completion $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/youtube-dl
19
20 .PHONY: all clean install README.md youtube-dl.bash-completion
21 # TODO un-phony README.md and youtube-dl.bash_completion by reading from .in files and generating from them
22
23 youtube-dl: youtube_dl/*.py
24         zip --quiet --junk-paths youtube-dl youtube_dl/*.py
25         echo '#!/usr/bin/env python' > youtube-dl
26         cat youtube-dl.zip >> youtube-dl
27         rm youtube-dl.zip
28         chmod a+x youtube-dl
29
30 youtube-dl.exe: youtube_dl/*.py
31         bash devscripts/wine-py2exe.sh build_exe.py
32
33 README.md: youtube_dl/*.py
34         @options=$$(COLUMNS=80 python -m youtube_dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/## \1/') && \
35                 header=$$(sed -e '/.*# OPTIONS/,$$ d' README.md) && \
36                 footer=$$(sed -e '1,/.*# CONFIGURATION/ d' README.md) && \
37                 echo "$${header}" > README.md && \
38                 echo >> README.md && \
39                 echo '# OPTIONS' >> README.md && \
40                 echo "$${options}" >> README.md&& \
41                 echo >> README.md && \
42                 echo '# CONFIGURATION' >> README.md && \
43                 echo "$${footer}" >> README.md
44
45 youtube-dl.1: README.md
46         pandoc -s -w man README.md -o youtube-dl.1
47
48 youtube-dl.bash-completion: README.md
49         @options=`egrep -o '(--[a-z-]+) ' README.md | sort -u | xargs echo` && \
50                 content=`sed "s/opts=\"[^\"]*\"/opts=\"$${options}\"/g" youtube-dl.bash-completion` && \
51                 echo "$${content}" > youtube-dl.bash-completion
52
53 LATEST_VERSION: youtube_dl/__init__.py
54         python -m youtube_dl --version > LATEST_VERSION
55
56 test:
57         nosetests2 --nocapture test
58
59 .PHONY: default compile update update-latest update-readme test clean