-
Notifications
You must be signed in to change notification settings - Fork 247
/
Makefile
202 lines (173 loc) · 5 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#!/usr/bin/make -f
# -*- makefile -*-
# ex: set tabstop=4 noexpandtab:
# -*- coding: utf-8 -*-
#
# SPDX-License: ISC
# SPDX-License-URL: https://spdx.org/licenses/ISC.html
default: help all
@echo "# https://github.com/yjwen/org-reveal"
srcs?=$(wildcard *.org | sort)
objs?=${srcs:.org=.html}
target?=$(shell echo ${srcs:.org=} | tr ' ' '\n' | head -n1)
reveal_url?=https://github.com/hakimel/reveal.js/
reveal_zip_url?=https://github.com/hakimel/reveal.js/archive/master.zip
reveal_dir?=./reveal.js
sudo?=sudo
deploy_branch?=gh-pages
cache_dir?=./cache/url
make?=make -f ${CURDIR}/Makefile
help:
@echo "# Usage:"
@echo "# make help # Usage"
@echo "# make setup # Install tools"
@echo "# make all # Build html"
@echo "# make start # View HTML in Web browser"
@echo "# make download # Download deps"
@echo "# make offline # Cache inlined resources and generate cached pages"
@echo "# make upload # to build and publish"
@echo "# make setup/debian setup download start # ..."
@echo "# Config:"
@echo "# srcs=${srcs}"
@echo "# objs=${objs}"
@echo "# target=${target}"
all: ${objs}
ls $^
download: ${reveal_dir}
ls $^
start: ${target}.html
x-www-browser $<
clean:
rm -rfv *~ */*/*~ tmp tmp.*
cleanall: clean
find . -iname "*.html" -exec rm -v "{}" \;
setup/debian: /etc/debian_version
-${sudo} apt-get update
${sudo} apt-get install -y \
emacs \
git \
sudo \
unzip \
wget \
# EOL
setup: /etc/os-release
@echo "# Please install tools, On debian: make setup/debian"
emacs \
--no-init-file \
--user="${USER}" \
--batch \
--eval="(require 'package)" \
--eval="(add-to-list 'package-archives \
'(\"melpa\" . \"https://melpa.org/packages/\"))" \
--eval='(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")' \
--eval="(package-initialize)" \
--eval="(package-show-package-list)" \
--eval="(package-refresh-contents)" \
--eval="(package-list-packages)" \
--eval="(package-install 'org)" \
--eval="(package-install 'htmlize)" \
--eval="(package-install 'ox-reveal)" \
# EOL
%.html: %.org Makefile
cd ${<D} \
&& \
emacs \
--no-init-file\
--user="${USER}" \
--batch \
--eval="(require 'org)" \
--eval="(require 'ox-reveal)" \
--find-file="${<F}" \
--funcall="org-reveal-export-to-html" \
# EOL
html: ${target}.html
ls $<
all/%: ${srcs}
for src in $^ ; do \
target=$$(echo "$${src}" | sed -e 's|\.org$$||g') ; \
make target="$${target}" "${@F}" \
|| exit $$? ; \
done
${reveal_dir}:
@mkdir -p ${@D}
wget -O- ${reveal_zip_url} > reveal.js.zip
unzip reveal.js.zip
mv reveal.js-master ${@}
@rm -f reveal.js.zip
deploy:
-git commit -sam "WIP: About to deploy ${target}"
git checkout ${deploy_branch} \
|| git checkout -b ${deploy_branch} master
make html
git add -f ${target}.html
-git commit -am "WIP: Generated html ${target}"
git checkout master
upload:
git checkout master
-git branch -D ${deploy_branch}
git checkout -b ${deploy_branch}
-git commit -sam "WIP: About to download"
make download
git add -f "${reveal_dir}"
-git commit -sam "WIP: Add ${reveal_dir}"
${MAKE} all/deploy
git checkout ${deploy_branch}
echo "# About to push to origin in 5 secs ?"
sleep 5 ; git push -f origin HEAD:gh-pages
git checkout master
%.lst: %.org Makefile
echo "" > "$@"
-grep -o -e 'https\?://[^]"]*' -- "$<" \
| grep -E ".**\.(gif|png|svg|jpg|jpeg|webm|mp4)"\
| sort -u >> "$@.tmp"
mv "$@.tmp" "$@"
%/curl:
@mkdir -p http https
@ln -fs http http:
@ln -fs https https:
ls "${@D}" > /dev/null 2>&1 \
|| curl --create-dirs -o "./${@D}" -- "${@D}"
find . -iname "*#*" | while read file; do \
basename=$$(basename -- "$${file}"); \
dirname=$$(dirname -- "$${file}"); \
dstname=$$(echo "$${basename}" | sed -e 's|#.|%23.|g'); \
ln -fs "$${basename}" "$${dirname}/$${dstname}"; \
dstname=$$(echo "$${basename}" | sed -e 's|#.||g'); \
ln -fs "$${basename}" "$${dirname}/$${dstname}"; \
done
.PHONY: cache
cache: ${target}.lst Makefile
@mkdir -p "${<D}/${cache_dir}"
cd "${<D}/${cache_dir}" && \
cat "${CURDIR}/$<" | while read url ; do \
${make} $${url}/curl || exit $$? ; \
done
${target}._cache.org: ${target}.lst ${target}.org cache reveal.js
sed -e 's|^#+REVEAL_ROOT:.*|#+REVEAL_ROOT: ${CURDIR}/reveal.js|g' \
< ${target}.org > $@.tmp
sort -u $< | while read url; do \
sed -e "s|$${url}|${cache_dir}/$${url}|g" \
-e "s|${cache_dir}/http://|${cache_dir}/http/|g" \
-e "s|${cache_dir}/https://|${cache_dir}/https/|g" \
-i "${@}.tmp" ; \
done
mv "${@}.tmp" "$@"
html-cache: ${target}.org ${target}._cache.org
make html target="${target}._cache"
sed -e "s|#./|/./|g" -i "${target}._cache.html"
offline: all/cache all/html-cache
sync
offline/start: offline
${MAKE} ${@F} target="${target}._cache"
commit/offline:
-git branch -D ${@F}/master
git checkout -b ${@F}/master
${MAKE} download
-git add -f .
-git commit -am 'deploy: Cache downloaded files'
${MAKE} cache
-git add -f .
-git commit -am 'deploy: Cache downloaded files, see lst file for sources'
${MAKE} ${@F}
-git add -f .
-git commit -am 'deploy: Render cached files'