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.

49 lines
1.7 KiB

  1. all: youtube-dl README.md README.txt youtube-dl.1 youtube-dl.bash-completion
  2. clean:
  3. rm -rf youtube-dl youtube-dl.exe youtube-dl.1 youtube-dl.bash-completion README.txt MANIFEST build/ dist/
  4. PREFIX=/usr/local
  5. BINDIR=$(PREFIX)/bin
  6. MANDIR=$(PREFIX)/man
  7. SYSCONFDIR=/etc
  8. install: youtube-dl youtube-dl.1 youtube-dl.bash-completion
  9. install -d $(DESTDIR)$(BINDIR)
  10. install -m 755 youtube-dl $(DESTDIR)$(BINDIR)
  11. install -d $(DESTDIR)$(MANDIR)/man1
  12. install -m 644 youtube-dl.1 $(DESTDIR)$(MANDIR)/man1
  13. install -d $(DESTDIR)$(SYSCONFDIR)/bash_completion.d
  14. install -m 644 youtube-dl.bash-completion $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/youtube-dl
  15. test:
  16. #nosetests --with-coverage --cover-package=youtube_dl --cover-html --verbose --processes 4 test
  17. nosetests --verbose test
  18. .PHONY: all clean install test
  19. youtube-dl: youtube_dl/*.py
  20. zip --quiet youtube-dl youtube_dl/*.py
  21. zip --quiet --junk-paths youtube-dl youtube_dl/__main__.py
  22. echo '#!/usr/bin/env python' > youtube-dl
  23. cat youtube-dl.zip >> youtube-dl
  24. rm youtube-dl.zip
  25. chmod a+x youtube-dl
  26. README.md: youtube_dl/*.py
  27. COLUMNS=80 python -m youtube_dl --help | python devscripts/make_readme.py
  28. README.txt: README.md
  29. pandoc -f markdown -t plain README.md -o README.txt
  30. youtube-dl.1: README.md
  31. pandoc -s -f markdown -t man README.md -o youtube-dl.1
  32. youtube-dl.bash-completion: youtube_dl/*.py devscripts/bash-completion.in
  33. python devscripts/bash-completion.py
  34. youtube-dl.tar.gz: all
  35. tar -czf youtube-dl.tar.gz -s "|^./|./youtube-dl/|" --exclude="updates_key.pem" \
  36. --exclude="*.pyc" --exclude="*.pyo" --exclude="*~" --exclude="youtube-dl.exe" \
  37. --exclude="wine-py2exe/" --exclude="py2exe.log" --exclude="*.kate-swp" \
  38. --exclude="build/" --exclude="dist/" --exclude="MANIFEST" --exclude=".git/" .