-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sh
executable file
·85 lines (71 loc) · 2.28 KB
/
build.sh
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
#!/bin/bash
if ! [ -x .env ]; then
virtualenv --python=python3 .env
. ./.env/bin/activate
pip3 install markdown WeasyPrint pyyaml
else
. ./.env/bin/activate
fi
echo "CREATING PDFs"
echo "============="
# create guides
python3 scripts/build.py
echo "CONCATENATING PDFs"
echo "=================="
if ! docker ps | grep libreoffice > /dev/null; then
if ! docker ps -a | grep libreoffice > /dev/null; then
echo "creating docker container"
docker_hash=$(docker run -d --name libreoffice -p 8100:8100 hdejager/libreoffice-api)
else
docker start libreoffice
fi
fi
pdf_file_list=""
docker_hash=libreoffice
echo "ODP-conversion"
cd content
for dir in $(ls -d */); do
cd $dir
echo "--> Processing ${dir}"
if ! ls *.odp 2> /dev/null ; then
echo " --> No slides found, skipping"
cd ..
continue
fi
pdf_file_list="$pdf_file_list $(echo $dir | sed 's/\/$//g').pdf"
echo "pdf_file_list now $pdf_file_list"
for file in $(ls *.odp 2> /dev/null); do
plain_name=$(basename $file .odp)
echo "--> Converting ${file}"
echo " --> copy $file to container"
docker cp $file libreoffice:/tmp/${file}
echo " --> converting"
docker exec -ti libreoffice \
unoconv \
--connection 'socket,host=127.0.0.1,port=8100,tcpNoDelay=1;urp;StarOffice.ComponentContext' \
-f pdf /tmp/${file}
echo " --> copy ${plain_name}.pdf from container"
docker cp libreoffice:/tmp/${plain_name}.pdf .
done
big_pdf_filename=$(basename $dir).pdf
echo "--> concat *.pdf to one ../../build/${big_pdf_filename}"
pdfunite *.pdf ../../build/${big_pdf_filename}
echo "--> Removing *.pdf"
rm *.pdf
cd ..
done
cd ../build
sha256sum *.pdf > SHA256SUMS.txt
zip Specter-Training-material.zip Specter-Training-Overview.pdf $pdf_file_list
sha256sum Specter-Training-material.zip >> SHA256SUMS.txt
cd ..
python3 scripts/create_index.py
cp templates/forkme_right_gray_6d6d6d.svg build
if ! [ -z "$1" ]; then
rm El_*.txt
cp $1 build
sha256sum El_*.txt >> SHA256SUMS.txt
zip ../Specter-Training-material.zip Specter-Training-material.zip SHA256SUMS.txt
fi
cd build
scp * [email protected]:webseiten/bitcoinops/education