mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-29 21:52:54 +00:00
Be explicit about build requirements in Makefile
- Specify what files each make command needs - Move out of 'all' and into 'release' because it is platform specific and not needed by everyone (i.e. me)
This commit is contained in:
parent
7a7c093ab0
commit
a708f2437a
1 changed files with 8 additions and 9 deletions
13
Makefile
13
Makefile
|
@ -1,9 +1,9 @@
|
||||||
all: compile exe readme man-page bash-completion update-latest
|
all: compile readme man-page bash-completion update-latest
|
||||||
|
|
||||||
update-latest:
|
update-latest: youtube-dl
|
||||||
./youtube-dl --version > LATEST_VERSION
|
./youtube-dl --version > LATEST_VERSION
|
||||||
|
|
||||||
readme:
|
readme: youtube-dl README.md
|
||||||
@options=$$(COLUMNS=80 ./youtube-dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/## \1/') && \
|
@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) && \
|
header=$$(sed -e '/.*# OPTIONS/,$$ d' README.md) && \
|
||||||
footer=$$(sed -e '1,/.*# FAQ/ d' README.md) && \
|
footer=$$(sed -e '1,/.*# FAQ/ d' README.md) && \
|
||||||
|
@ -15,7 +15,7 @@ readme:
|
||||||
echo '# FAQ' >> README.md && \
|
echo '# FAQ' >> README.md && \
|
||||||
echo "$${footer}" >> README.md
|
echo "$${footer}" >> README.md
|
||||||
|
|
||||||
man-page:
|
man-page: README.md
|
||||||
pandoc -s -w man README.md -o youtube-dl.1
|
pandoc -s -w man README.md -o youtube-dl.1
|
||||||
|
|
||||||
bash-completion:
|
bash-completion:
|
||||||
|
@ -32,17 +32,16 @@ compile:
|
||||||
exe:
|
exe:
|
||||||
bash devscripts/wine-py2exe.sh build_exe.py
|
bash devscripts/wine-py2exe.sh build_exe.py
|
||||||
|
|
||||||
install:
|
install: youtube-dl youtube-dl.1 youtube-dl.bash-completion
|
||||||
install -m 755 --owner root --group root youtube-dl /usr/local/bin/
|
install -m 755 --owner root --group root youtube-dl /usr/local/bin/
|
||||||
install -m 644 --owner root --group root youtube-dl.1 /usr/local/man/man1
|
install -m 644 --owner root --group root youtube-dl.1 /usr/local/man/man1
|
||||||
install -m 644 --owner root --group root youtube-dl.bash-completion /etc/bash_completion.d/youtube-dl
|
install -m 644 --owner root --group root youtube-dl.bash-completion /etc/bash_completion.d/youtube-dl
|
||||||
|
|
||||||
release:
|
release: all exe youtube-dl.exe
|
||||||
@if [ -z "$$version" ]; then echo 'ERROR: specify version number like this: make release version=1994.09.06'; exit 1; fi
|
@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 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
|
@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
|
@sed -i "s/__version__ = '.*'/__version__ = '$$version'/" youtube_dl/__init__.py
|
||||||
make all
|
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "release $$version"
|
git commit -m "release $$version"
|
||||||
git tag -m "Release $$version" "$$version"
|
git tag -m "Release $$version" "$$version"
|
||||||
|
|
Loading…
Reference in a new issue