2eb226fdbde1e4046bf980a5c2bc1945d60ea899
[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 test:
21         nosetests2 --nocapture test
22
23 .PHONY: all clean install test README.md youtube-dl.bash-completion
24 # TODO un-phony README.md and youtube-dl.bash_completion by reading from .in files and generating from them
25
26 youtube-dl: youtube_dl/*.py
27         zip --quiet youtube-dl youtube_dl/*.py
28         zip --quiet --junk-paths youtube-dl youtube_dl/__main__.py
29         echo '#!/usr/bin/env python' > youtube-dl
30         cat youtube-dl.zip >> youtube-dl
31         rm youtube-dl.zip
32         chmod a+x youtube-dl
33
34 youtube-dl.exe: youtube_dl/*.py
35         bash devscripts/wine-py2exe.sh build_exe.py
36
37 README.md: youtube_dl/*.py
38         @options=$$(COLUMNS=80 python -m youtube_dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/## \1/') && \
39                 header=$$(sed -e '/.*# OPTIONS/,$$ d' README.md) && \
40                 footer=$$(sed -e '1,/.*# CONFIGURATION/ d' README.md) && \
41                 echo "$${header}" > README.md && \
42                 echo >> README.md && \
43                 echo '# OPTIONS' >> README.md && \
44                 echo "$${options}" >> README.md&& \
45                 echo >> README.md && \
46                 echo '# CONFIGURATION' >> README.md && \
47                 echo "$${footer}" >> README.md
48
49 youtube-dl.1: README.md
50         pandoc -s -w man README.md -o youtube-dl.1
51
52 youtube-dl.bash-completion: README.md
53         @options=`egrep -o '(--[a-z-]+) ' README.md | sort -u | xargs echo` && \
54                 content=`sed "s/opts=\"[^\"]*\"/opts=\"$${options}\"/g" youtube-dl.bash-completion` && \
55                 echo "$${content}" > youtube-dl.bash-completion
56
57 LATEST_VERSION: youtube_dl/__init__.py
58         python -m youtube_dl --version > LATEST_VERSION