X-Git-Url: https://git.danieliu.xyz/?p=pinopress.git;a=blobdiff_plain;f=pinopress;h=58b826a16f442d9a239ce446dc3cf67879cea845;hp=5157f99c91fea441927b88e021d5e14f3398913c;hb=2c2e491fc65d159d57de6121776b2b0424588a29;hpb=d9e98960c517be5806c756518f46827cf59d0471 diff --git a/pinopress b/pinopress index 5157f99..58b826a 100755 --- a/pinopress +++ b/pinopress @@ -1,8 +1,14 @@ #!/usr/bin/make -sf +## pinopress - the simple static blog generator +## dependencies: sponge + +# user variables SITEURL := https://blog.danieliu.xyz -USERVAR1 := -USERVAR2 := +USERGLOBAL1 := +USERGLOBAL2 := + +include config.mk .PHONY: help build clean @@ -12,49 +18,65 @@ BUILD_DIR := build SRC_DIR := articles MODULE_DIR := modules -ARTICLE_PATH := $(BUILD_DIR)/article +ARTICLE_PATH := article ARTICLE_LIST := $(basename $(shell ls $(SRC_DIR))) # some helper functions define export_common export SITEURL="$(SITEURL)" - export USERVAR1="$(USERVAR1)" - export USERVAR2="$(USERVAR2)" + export ARTICLE_PATH="$(ARTICLE_PATH)" + export USERGLOBAL1="$(USERGLOBAL1)" + export USERGLOBAL2="$(USERGLOBAL2)" +endef + +# usage: loop_article [dest] [template_filename] +define loop_article + for article_file in `ls $(SRC_DIR)`; do + . ./$(MODULE_DIR)/md-header "$(SRC_DIR)/$$article_file" + envsubst < $(TEMPLATE_DIR)/$(2) | sed -i "//r /dev/stdin" "$(1)" + done endef help: echo 'pinopress help|build|clean' -build: $(BUILD_DIR)/rolling.html $(BUILD_DIR)/archive.html $(ARTICLE_PATH)/$(addsuffix .html,$(ARTICLE_LIST)) +build: $(BUILD_DIR)/rolling.html $(BUILD_DIR)/archive.html $(BUILD_DIR)/feed.xml $(addprefix $(BUILD_DIR)/$(ARTICLE_PATH)/,$(addsuffix .html,$(ARTICLE_LIST))) -.ONESHELL: -$(BUILD_DIR)/rolling.html: - echo 'building rolling file' +# usage: build_page [page_template] [item_template] [display_message] +define build_page + echo "$(3)" $(export_common) - cat $(TEMPLATE_DIR)/head.template.html $(TEMPLATE_DIR)/rollingbody.template.html $(TEMPLATE_DIR)/foot.template.html > "$@" + cat $(TEMPLATE_DIR)/$(1) > "$@" + $(call loop_article,"$@",$(2)) envsubst < "$@" | sponge "$@" +endef + +.ONESHELL: +$(BUILD_DIR)/rolling.html: + $(call build_page,rollingpage.template.html,rollingitem.template.html,building rolling file) .ONESHELL: $(BUILD_DIR)/archive.html: - echo 'building archive file' - $(export_common) - cat $(TEMPLATE_DIR)/head.template.html $(TEMPLATE_DIR)/archivebody.template.html $(TEMPLATE_DIR)/foot.template.html > "$@" - envsubst < "$@" | sponge "$@" + $(call build_page,archivepage.template.html,archiveitem.template.html,building archive file) + +.ONESHELL: +$(BUILD_DIR)/feed.xml: + $(call build_page,feed.template.xml,feeditem.template.xml,building feed file) .ONESHELL: -$(ARTICLE_PATH)/%.html: articles/%.md - echo 'parsing $^' +$(BUILD_DIR)/$(ARTICLE_PATH)/%.html: $(SRC_DIR)/%.md + echo "parsing $<" $(export_common) - export ARTICLE_TITLE="$(shell ./$(MODULE_DIR)/md-header "$<" name)" - export PUBLISHED_DATE="$(shell ./$(MODULE_DIR)/md-header "$<" published)" - cat $(TEMPLATE_DIR)/head.template.html > "$@" + $(call export_article,"$<") + cat $(TEMPLATE_DIR)/articlepage.template.html > "$@" # module pipeline starts here - ./$(MODULE_DIR)/md "$^" >> "$@" + ./$(MODULE_DIR)/md "$<" | sed -i "//r /dev/stdin" "$@" + . ./$(MODULE_DIR)/md-header "$<" + . ./$(MODULE_DIR)/readingtime "$<" # module pipeline ends here - cat $(TEMPLATE_DIR)/foot.template.html >> "$@" envsubst < "$@" | sponge "$@" clean: echo 'cleaning...' - rm $(BUILD_DIR)/rolling.html $(BUILD_DIR)/archive.html $(ARTICLE_PATH)/* + rm $(BUILD_DIR)/rolling.html $(BUILD_DIR)/archive.html $(BUILD_DIR)/feed.xml $(BUILD_DIR)/$(ARTICLE_PATH)/*