You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.9 KiB

  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. clean:
  4. rm -f youtube-dl youtube-dl.exe youtube-dl.1 LATEST_VERSION
  5. PREFIX=/usr/local
  6. BINDIR=$(PREFIX)/bin
  7. MANDIR=$(PREFIX)/man
  8. SYSCONFDIR=/etc
  9. install: youtube-dl youtube-dl.1 youtube-dl.bash-completion
  10. install -d $(DESTDIR)$(BINDIR)
  11. install -m 755 youtube-dl $(DESTDIR)$(BINDIR)
  12. install -d $(DESTDIR)$(MANDIR)/man1
  13. install -m 644 youtube-dl.1 $(DESTDIR)$(MANDIR)/man1
  14. install -d $(DESTDIR)$(SYSCONFDIR)/bash_completion.d
  15. install -m 644 youtube-dl.bash-completion $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/youtube-dl
  16. test:
  17. nosetests2 --nocapture test
  18. .PHONY: all clean install test README.md youtube-dl.bash-completion
  19. # TODO un-phony README.md and youtube-dl.bash_completion by reading from .in files and generating from them
  20. youtube-dl.exe: youtube_dl/*.py
  21. bash devscripts/wine-py2exe.sh build_exe.py
  22. README.md: youtube_dl/*.py
  23. @options=$$(COLUMNS=80 python -m youtube_dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/## \1/') && \
  24. header=$$(sed -e '/.*# OPTIONS/,$$ d' README.md) && \
  25. footer=$$(sed -e '1,/.*# CONFIGURATION/ d' README.md) && \
  26. echo "$${header}" > README.md && \
  27. echo >> README.md && \
  28. echo '# OPTIONS' >> README.md && \
  29. echo "$${options}" >> README.md&& \
  30. echo >> README.md && \
  31. echo '# CONFIGURATION' >> README.md && \
  32. echo "$${footer}" >> README.md
  33. youtube-dl.1: README.md
  34. pandoc -s -w man README.md -o youtube-dl.1
  35. youtube-dl.bash-completion: README.md
  36. @options=`egrep -o '(--[a-z-]+) ' README.md | sort -u | xargs echo` && \
  37. content=`sed "s/opts=\"[^\"]*\"/opts=\"$${options}\"/g" youtube-dl.bash-completion` && \
  38. echo "$${content}" > youtube-dl.bash-completion
  39. LATEST_VERSION: youtube_dl/__init__.py
  40. python -m youtube_dl --version > LATEST_VERSION