Skip to content

Commit

Permalink
add Makefile; include manpage&completion in setup.py (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Mar 24, 2019
1 parent eacebf4 commit e5f44a5
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 2 deletions.
39 changes: 39 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
MANDIR ?= $(PREFIX)/man
SHAREDIR ?= $(PREFIX)/share
PYTHON ?= /usr/bin/env python3

# set SYSCONFDIR to /etc if PREFIX=/usr or PREFIX=/usr/local
SYSCONFDIR = $(shell if [ $(PREFIX) = /usr -o $(PREFIX) = /usr/local ]; then echo /etc; else echo $(PREFIX)/etc; fi)

all: gallery-dl.1 gallery-dl.bash_completion docs/supportedsites.rst

clean:
$(RM) gallery-dl.1 gallery-dl.bash_completion
$(RM) -r build/

install: gallery-dl.1 gallery-dl.bash_completion
$(PYTHON) setup.py install
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

release: docs/supportedsites.rst
scripts/release.sh

test:
scripts/run_tests.sh

.PHONY: all clean install release test

docs/supportedsites.rst: gallery_dl/*/*.py scripts/supportedsites.py
$(PYTHON) scripts/supportedsites.py

gallery-dl.1: gallery_dl/option.py scripts/man.py
$(PYTHON) scripts/man.py

gallery-dl.bash_completion: gallery_dl/option.py scripts/bash_completion.py
$(PYTHON) scripts/bash_completion.py
2 changes: 1 addition & 1 deletion scripts/bash_completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
opts.append(opt)


PATH = os.path.join(ROOTDIR, "gallery-dl.bash-completion")
PATH = os.path.join(ROOTDIR, "gallery-dl.bash_completion")
with open(PATH, "w", encoding="utf-8") as file:
file.write(TEMPLATE % {
"opts" : " ".join(opts),
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ supportedsites() {
cd "${ROOTDIR}"
echo Checking if "${SUPPORTEDSITES}" is up to date

./scripts/build_supportedsites.py
./scripts/supportedsites.py
if ! git diff --quiet "${SUPPORTEDSITES}"; then
echo "updated ${SUPPORTEDSITES} contains changes"
exit 4
Expand Down
File renamed without changes.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ def read(fname):
"gallery_dl.downloader",
"gallery_dl.postprocessor",
],
data_files = [
('etc/bash_completion.d', ['gallery-dl.bash-completion']),
('share/man/man1' , ['gallery-dl.1']),
],
keywords="image gallery downloader crawler scraper",
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit e5f44a5

Please sign in to comment.