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