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.

48 lines
1.6 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. nosetests2 --nocapture test
  17. .PHONY: all clean install test
  18. youtube-dl: youtube_dl/*.py
  19. zip --quiet youtube-dl youtube_dl/*.py
  20. zip --quiet --junk-paths youtube-dl youtube_dl/__main__.py
  21. echo '#!/usr/bin/env python' > youtube-dl
  22. cat youtube-dl.zip >> youtube-dl
  23. rm youtube-dl.zip
  24. chmod a+x youtube-dl
  25. README.md: youtube_dl/*.py
  26. COLUMNS=80 python -m youtube_dl --help | python devscripts/make_readme.py
  27. README.txt: README.md
  28. pandoc -f markdown -t plain README.md -o README.txt
  29. youtube-dl.1: README.md
  30. pandoc -s -f markdown -t man README.md -o youtube-dl.1
  31. youtube-dl.bash-completion: README.md devscripts/bash_completion.template
  32. python devscripts/bash_completion.py
  33. youtube-dl.tar.gz: all
  34. tar -czf youtube-dl.tar.gz -s "|^./|./youtube-dl/|" \
  35. --exclude="*.pyc" --exclude="*.pyo" --exclude="*~" --exclude="youtube-dl.exe" \
  36. --exclude="wine-py2exe/" --exclude="py2exe.log" --exclude="*.kate-swp" \
  37. --exclude="build/" --exclude="dist/" --exclude="MANIFEST" --exclude=".git/" .