drone-plugin-index/Makefile

24 lines
572 B
Makefile
Raw Permalink Normal View History

2021-09-11 13:06:33 +02:00
# renovate: datasource=github-releases depName=thegeeklab/hugo-geekdoc
THEME_VERSION := v0.40.1
2021-09-11 13:06:33 +02:00
THEME := hugo-geekdoc
2022-05-26 17:52:55 +02:00
2021-09-11 13:06:33 +02:00
BASEDIR := .
THEMEDIR := $(BASEDIR)/themes
2022-05-26 17:52:55 +02:00
CONTENTDIR := $(BASEDIR)/content
DATADIR := $(BASEDIR)/data
2021-09-11 13:06:33 +02:00
.PHONY: all
all: doc
.PHONY: doc
doc: doc-assets
.PHONY: doc-assets
doc-assets:
2022-05-26 17:52:55 +02:00
mkdir -p $(THEMEDIR)/$(THEME)/; \
2021-09-11 13:06:33 +02:00
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:
2022-05-26 17:52:55 +02:00
rm -rf $(THEMEDIR) $(CONTENTDIR)/**/ $(DATADIR)/*