Renovator Bot
da2cbc3782
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #103 Co-authored-by: Renovator Bot <renovator@rknet.org> Co-committed-by: Renovator Bot <renovator@rknet.org>
23 lines
553 B
Makefile
23 lines
553 B
Makefile
# renovate: datasource=github-releases depName=thegeeklab/hugo-geekdoc
|
|
THEME_VERSION := v0.40.0
|
|
THEME := hugo-geekdoc
|
|
BASEDIR := .
|
|
THEMEDIR := $(BASEDIR)/themes
|
|
CONTENTDIR := $(BASEDIR)/content
|
|
|
|
.PHONY: all
|
|
all: doc
|
|
|
|
.PHONY: doc
|
|
doc: doc-assets
|
|
|
|
.PHONY: doc-assets
|
|
doc-assets:
|
|
mkdir -p $(THEMEDIR)/$(THEME)/ ; \
|
|
curl -sSL "https://github.com/thegeeklab/$(THEME)/releases/download/${THEME_VERSION}/$(THEME).tar.gz" | tar -xz -C $(THEMEDIR)/$(THEME)/ --strip-components=1
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf $(THEMEDIR) && \
|
|
rm -rf $(CONTENTDIR)/roles/*/**/
|