mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-05 04:20:40 +00:00
15e6278156
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
21 lines
483 B
Makefile
21 lines
483 B
Makefile
# renovate: datasource=github-releases depName=thegeeklab/hugo-geekdoc
|
|
THEME_VERSION := v1.0.0
|
|
THEME := hugo-geekdoc
|
|
BASEDIR := docs
|
|
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)
|