-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild
executable file
·54 lines (39 loc) · 1.29 KB
/
build
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
#!/bin/bash
if test -f _config.yml;then
echo +++ Starting
else
echo +++ You may call build only in dino-lang.github.io directory
exit 1
fi
rm -rf _build
mkdir _build && cd _build
echo +++ Cloning...
git clone -b dino-0.97 https://github.com/dino-lang/dino.git
git clone https://github.com/dino-lang/introduction.git
git clone https://github.com/dino-lang/implementation-article.git
annotate() {
echo '---' > "$2"
echo 'title: ' "$1" >> "$2"
echo 'layout: default' >> "$2"
echo '---' >> "$2"
echo >> "$2"
}
echo +++ Building learn directory ...
annotate "Learn Dino" ../learn/overview.md
fgrep -v "[email protected]" dino/README.md >> ../learn/overview.md
cp dino/Dino.jpg dino/Dino_Flow.png ../learn
annotate "Dino Introduction" ../learn/intro.html
cat introduction/intro.html >> ../learn/intro.html
cp introduction/*.d ../learn
cp introduction/*.sas ../learn
cp implementation-article/dino.pdf ../learn
echo +++ Building doc directory ...
for i in dino/DINO/*.html;do
annotate "Dino Documentation" ../doc/`basename $i`
cat $i >> ../doc/`basename $i`
done
echo +++ Building download directory ...
(cd dino && ./configure --enable-debug && make -j4 && make dist && cp dino*.tar.gz ../../download) || exit 1
cd .. && rm -rf _build
echo +++ Everything is ok: you can commit
exit 0