thegeeklab/Makefile
Renovator Bot 8a768fb0b3
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
chore(deps): update dependency thegeeklab/hugo-geekblog to v0.16.1
2022-02-23 09:03:25 +00:00

21 lines
483 B
Makefile

# renovate: datasource=github-releases depName=thegeeklab/hugo-geekblog
THEME_VERSION := v0.16.1
THEME := hugo-geekblog
BASEDIR := .
THEMEDIR := $(BASEDIR)/themes
.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)