thegeeklab/Makefile

21 lines
483 B
Makefile
Raw Normal View History

2020-11-22 15:45:47 +01:00
# renovate: datasource=github-releases depName=thegeeklab/hugo-geekblog
chore(deps): update dependency thegeeklab/hugo-geekblog to v0.10.1 (#11) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [thegeeklab/hugo-geekblog](https://github.com/thegeeklab/hugo-geekblog) | patch | `v0.10.0` -> `v0.10.1` | --- ### Release Notes <details> <summary>thegeeklab/hugo-geekblog</summary> ### [`v0.10.1`](https://github.com/thegeeklab/hugo-geekblog/releases/v0.10.1) [Compare Source](https://github.com/thegeeklab/hugo-geekblog/compare/v0.10.0...v0.10.1) ##### Changelog ##### [v0.10.1](https://github.com/thegeeklab/hugo-geekblog/compare/v0.10.0...v0.10.1) (2021-05-24) ##### Bug Fixes - remove inline script usage ([#&#8203;49](https://github.com/thegeeklab/hugo-geekblog/issues/49)) - improve title and decription handling on error page ##### Features - add sizes 'regular' and 'large' to button shortcode ([#&#8203;50](https://github.com/thegeeklab/hugo-geekblog/issues/50)) - add partial head/custom.html for custom page head elements ([#&#8203;48](https://github.com/thegeeklab/hugo-geekblog/issues/48)) ##### Others - remove unused font and only preload main fonts ([#&#8203;47](https://github.com/thegeeklab/hugo-geekblog/issues/47)) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.rknet.org/xoxys/thegeeklab/pulls/11 Co-authored-by: Renovator Bot <renovator@rknet.org> Co-committed-by: Renovator Bot <renovator@rknet.org>
2021-05-24 15:49:55 +02:00
THEME_VERSION := v0.10.1
2020-11-22 15:45:47 +01:00
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)