youtube-dl/Makefile

30 lines
915 B
Makefile
Raw Normal View History

2011-08-28 16:17:32 -05:00
default: update
update: compile update-readme update-latest
2011-08-24 17:09:28 -05:00
update-latest:
2011-11-21 13:00:54 -06:00
./youtube-dl.dev --version > LATEST_VERSION
2011-08-24 17:09:28 -05:00
update-readme:
2011-11-21 13:00:54 -06:00
@options=$$(COLUMNS=80 ./youtube-dl.dev --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
2011-08-24 17:09:28 -05:00
header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
2011-09-04 04:47:58 -05:00
footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
2011-08-24 17:09:28 -05:00
echo "$${header}" > README.md && \
echo >> README.md && \
echo '## OPTIONS' >> README.md && \
2011-08-24 17:09:28 -05:00
echo "$${options}" >> README.md&& \
echo >> README.md && \
echo '## FAQ' >> README.md && \
2011-08-24 17:09:28 -05:00
echo "$${footer}" >> README.md
compile:
2012-05-23 12:19:53 -05: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 17:09:28 -05:00
2012-07-22 15:36:22 -05: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