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.

58 lines
2.1 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: youtube_dl/*.py
  21. zip --quiet youtube-dl youtube_dl/*.py
  22. zip --quiet --junk-paths youtube-dl youtube_dl/__main__.py
  23. echo '#!/usr/bin/env python' > youtube-dl
  24. cat youtube-dl.zip >> youtube-dl
  25. rm youtube-dl.zip
  26. chmod a+x youtube-dl
  27. youtube-dl.exe: youtube_dl/*.py
  28. bash devscripts/wine-py2exe.sh build_exe.py
  29. README.md: youtube_dl/*.py
  30. @options=$$(COLUMNS=80 python -m youtube_dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/## \1/') && \
  31. header=$$(sed -e '/.*# OPTIONS/,$$ d' README.md) && \
  32. footer=$$(sed -e '1,/.*# CONFIGURATION/ d' README.md) && \
  33. echo "$${header}" > README.md && \
  34. echo >> README.md && \
  35. echo '# OPTIONS' >> README.md && \
  36. echo "$${options}" >> README.md&& \
  37. echo >> README.md && \
  38. echo '# CONFIGURATION' >> README.md && \
  39. echo "$${footer}" >> README.md
  40. youtube-dl.1: README.md
  41. pandoc -s -w man README.md -o youtube-dl.1
  42. youtube-dl.bash-completion: README.md
  43. @options=`egrep -o '(--[a-z-]+) ' README.md | sort -u | xargs echo` && \
  44. content=`sed "s/opts=\"[^\"]*\"/opts=\"$${options}\"/g" youtube-dl.bash-completion` && \
  45. echo "$${content}" > youtube-dl.bash-completion
  46. LATEST_VERSION: youtube_dl/__init__.py
  47. python -m youtube_dl --version > LATEST_VERSION