2012-12-07 20:59:59 +00:00
|
|
|
all: youtube-dl README.md README.txt youtube-dl.1 youtube-dl.bash-completion
|
2011-08-24 22:09:28 +00:00
|
|
|
|
2012-09-27 17:41:51 +00:00
|
|
|
clean:
|
2012-11-29 15:51:55 +00:00
|
|
|
rm -rf youtube-dl youtube-dl.exe youtube-dl.1 youtube-dl.bash-completion README.txt MANIFEST build/ dist/
|
2011-08-24 22:09:28 +00:00
|
|
|
|
2012-09-25 22:10:39 +00:00
|
|
|
PREFIX=/usr/local
|
2012-10-25 19:19:13 +00:00
|
|
|
BINDIR=$(PREFIX)/bin
|
|
|
|
MANDIR=$(PREFIX)/man
|
|
|
|
SYSCONFDIR=/etc
|
|
|
|
|
2012-08-03 18:10:54 +00:00
|
|
|
install: youtube-dl youtube-dl.1 youtube-dl.bash-completion
|
2012-10-25 19:19:13 +00:00
|
|
|
install -d $(DESTDIR)$(BINDIR)
|
|
|
|
install -m 755 youtube-dl $(DESTDIR)$(BINDIR)
|
|
|
|
install -d $(DESTDIR)$(MANDIR)/man1
|
|
|
|
install -m 644 youtube-dl.1 $(DESTDIR)$(MANDIR)/man1
|
|
|
|
install -d $(DESTDIR)$(SYSCONFDIR)/bash_completion.d
|
|
|
|
install -m 644 youtube-dl.bash-completion $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/youtube-dl
|
2012-08-03 18:10:54 +00:00
|
|
|
|
2012-11-26 21:35:12 +00:00
|
|
|
test:
|
2012-12-11 19:07:35 +00:00
|
|
|
#nosetests --with-coverage --cover-package=youtube_dl --cover-html --verbose --processes 4 test
|
|
|
|
nosetests --verbose test
|
2012-11-26 21:35:12 +00:00
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
.PHONY: all clean install test
|
2012-08-03 18:10:54 +00:00
|
|
|
|
|
|
|
youtube-dl: youtube_dl/*.py
|
2012-11-29 14:20:20 +00:00
|
|
|
zip --quiet youtube-dl youtube_dl/*.py
|
|
|
|
zip --quiet --junk-paths youtube-dl youtube_dl/__main__.py
|
2012-08-03 18:10:54 +00:00
|
|
|
echo '#!/usr/bin/env python' > youtube-dl
|
|
|
|
cat youtube-dl.zip >> youtube-dl
|
|
|
|
rm youtube-dl.zip
|
2012-09-27 17:41:51 +00:00
|
|
|
chmod a+x youtube-dl
|
2012-08-03 18:10:54 +00:00
|
|
|
|
2012-10-09 13:49:24 +00:00
|
|
|
README.md: youtube_dl/*.py
|
2012-12-07 13:45:16 +00:00
|
|
|
COLUMNS=80 python -m youtube_dl --help | python devscripts/make_readme.py
|
2011-08-24 22:09:28 +00:00
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
README.txt: README.md
|
2012-12-07 13:45:16 +00:00
|
|
|
pandoc -f markdown -t plain README.md -o README.txt
|
2012-11-29 15:51:55 +00:00
|
|
|
|
2012-08-03 18:10:54 +00:00
|
|
|
youtube-dl.1: README.md
|
2012-12-07 10:39:08 +00:00
|
|
|
pandoc -s -f markdown -t man README.md -o youtube-dl.1
|
2012-08-01 09:53:17 +00:00
|
|
|
|
2012-12-11 18:17:02 +00:00
|
|
|
youtube-dl.bash-completion: youtube_dl/*.py devscripts/bash-completion.in
|
2012-12-07 23:37:26 +00:00
|
|
|
python devscripts/bash-completion.py
|
2012-12-07 13:46:14 +00:00
|
|
|
|
|
|
|
youtube-dl.tar.gz: all
|
|
|
|
tar -czf youtube-dl.tar.gz -s "|^./|./youtube-dl/|" \
|
|
|
|
--exclude="*.pyc" --exclude="*.pyo" --exclude="*~" --exclude="youtube-dl.exe" \
|
|
|
|
--exclude="wine-py2exe/" --exclude="py2exe.log" --exclude="*.kate-swp" \
|
|
|
|
--exclude="build/" --exclude="dist/" --exclude="MANIFEST" --exclude=".git/" .
|