1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00
svtplay-dl/lib/Makefile

28 lines
679 B
Makefile
Raw Normal View History

2014-12-26 02:11:19 +01:00
PYLINT_OPTS = --report=no -d I -d C -d R -d W0511
2013-03-23 16:30:19 +01:00
all: svtplay-dl
clean:
2013-08-10 20:50:52 +02:00
find . -name '*.pyc' -exec rm {} \;
2013-03-23 16:30:19 +01:00
rm -f svtplay-dl
2014-12-26 02:11:19 +01:00
pylint:
pylint $(PYLINT_OPTS) svtplay_dl
export PACKAGES = svtplay_dl \
svtplay_dl.fetcher \
svtplay_dl.utils \
svtplay_dl.service \
svtplay_dl.subtitle
export PYFILES = $(addsuffix /*.py,$(subst .,/,$(PACKAGES)))
2014-02-02 15:10:17 +01:00
PYTHON ?= /usr/bin/env python
2013-03-23 16:30:19 +01:00
svtplay-dl: $(PYFILES)
zip -X --quiet svtplay-dl $(PYFILES)
zip -X --quiet --junk-paths svtplay-dl svtplay_dl/__main__.py
2013-03-23 16:30:19 +01:00
echo '#!$(PYTHON)' > svtplay-dl
cat svtplay-dl.zip >> svtplay-dl
rm svtplay-dl.zip
chmod a+x svtplay-dl