youtube-dl/Makefile

30 lines
915 B
Makefile
Raw Normal View History

2011-08-28 22:17:32 +01:00
default: update
update: compile update-readme update-latest
2011-08-24 23:09:28 +01:00
update-latest:
2011-11-21 19:00:54 +00:00
./youtube-dl.dev --version > LATEST_VERSION
2011-08-24 23:09:28 +01:00
update-readme:
2011-11-21 19:00:54 +00:00
@options=$$(COLUMNS=80 ./youtube-dl.dev --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
2011-08-24 23:09:28 +01:00
header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
2011-09-04 10:47:58 +01:00
footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
2011-08-24 23:09:28 +01:00
echo "$${header}" > README.md && \
echo >> README.md && \
echo '## OPTIONS' >> README.md && \
2011-08-24 23:09:28 +01:00
echo "$${options}" >> README.md&& \
echo >> README.md && \
echo '## FAQ' >> README.md && \
2011-08-24 23:09:28 +01:00
echo "$${footer}" >> README.md
compile:
2012-05-23 18:19:53 +01:00
zip --quiet --junk-paths youtube-dl youtube_dl/*.py
echo '#!/usr/bin/env python' > youtube-dl
cat youtube-dl.zip >> youtube-dl
rm youtube-dl.zip
2011-08-24 23:09:28 +01:00
2012-07-22 21:36:22 +01:00
install: youtube-dl
install -m 755 --owner root --group root youtube-dl /usr/local/bin/
.PHONY: default compile update update-latest update-readme install