2012-08-01 17:26:50 +02:00
|
|
|
all: compile exe readme man-page bash-completion update-latest
|
2011-08-25 00:09:28 +02:00
|
|
|
|
2011-09-13 22:29:50 +02:00
|
|
|
update-latest:
|
2012-08-01 11:53:17 +02:00
|
|
|
./youtube-dl --version > LATEST_VERSION
|
2011-08-25 00:09:28 +02:00
|
|
|
|
2012-08-01 11:53:17 +02:00
|
|
|
readme:
|
|
|
|
@options=$$(COLUMNS=80 ./youtube-dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/## \1/') && \
|
|
|
|
header=$$(sed -e '/.*# OPTIONS/,$$ d' README.md) && \
|
|
|
|
footer=$$(sed -e '1,/.*# FAQ/ d' README.md) && \
|
2011-08-25 00:09:28 +02:00
|
|
|
echo "$${header}" > README.md && \
|
2011-12-08 16:18:17 +01:00
|
|
|
echo >> README.md && \
|
2012-08-01 11:53:17 +02:00
|
|
|
echo '# OPTIONS' >> README.md && \
|
2011-08-25 00:09:28 +02:00
|
|
|
echo "$${options}" >> README.md&& \
|
2011-12-08 16:18:17 +01:00
|
|
|
echo >> README.md && \
|
2012-08-01 11:53:17 +02:00
|
|
|
echo '# FAQ' >> README.md && \
|
2011-08-25 00:09:28 +02:00
|
|
|
echo "$${footer}" >> README.md
|
|
|
|
|
2012-08-01 11:53:17 +02:00
|
|
|
man-page:
|
|
|
|
pandoc -s -w man README.md -o youtube-dl.1
|
|
|
|
|
2012-08-01 17:26:50 +02:00
|
|
|
bash-completion:
|
|
|
|
@options=`egrep -o '(--[a-z-]+) ' README.md | sort -u | xargs echo` && \
|
|
|
|
content=`sed "s/opts=\"[^\"]*\"/opts=\"$${options}\"/g" youtube-dl.bash-completion` && \
|
|
|
|
echo "$${content}" > youtube-dl.bash-completion
|
|
|
|
|
2011-11-21 19:59:59 +01:00
|
|
|
compile:
|
2012-05-23 19:19:53 +02:00
|
|
|
zip --quiet --junk-paths youtube-dl youtube_dl/*.py
|
2012-03-25 03:07:37 +02:00
|
|
|
echo '#!/usr/bin/env python' > youtube-dl
|
|
|
|
cat youtube-dl.zip >> youtube-dl
|
|
|
|
rm youtube-dl.zip
|
2011-08-25 00:09:28 +02:00
|
|
|
|
2012-08-01 11:53:17 +02:00
|
|
|
exe:
|
|
|
|
bash devscripts/wine-py2exe.sh build_exe.py
|
|
|
|
|
|
|
|
install:
|
2012-07-22 22:36:22 +02:00
|
|
|
install -m 755 --owner root --group root youtube-dl /usr/local/bin/
|
2012-08-01 11:53:17 +02:00
|
|
|
install -m 644 --owner root --group root youtube-dl.1 /usr/local/man/man1
|
2012-08-01 17:26:50 +02:00
|
|
|
install -m 644 --owner root --group root youtube-dl.bash-completion /etc/bash_completion.d/youtube-dl
|
2012-07-22 22:36:22 +02:00
|
|
|
|
2012-08-01 18:40:27 +02:00
|
|
|
release:
|
|
|
|
@if [ -z "$$version" ]; then echo 'ERROR: specify version number like this: make release version=1994.09.06'; exit 1; fi
|
|
|
|
@if [ ! -z "`git tag | grep "$$version"`" ]; then echo 'ERROR: version already present'; exit 1; fi
|
|
|
|
@if [ ! -z "`git status --porcelain`" ]; then echo 'ERROR: the working directory is not clean; commit or stash changes'; exit 1; fi
|
|
|
|
@sed -i "s/__version__ = '.*'/__version__ = '$$version'/" youtube_dl/__init__.py
|
|
|
|
make all
|
|
|
|
git add -A
|
|
|
|
git commit -m "release $$version"
|
|
|
|
git tag -m "Release $$version" "$$version"
|
|
|
|
|
|
|
|
.PHONY: all update-latest readme man-page bash-completion compile exe install release
|