summaryrefslogtreecommitdiff
path: root/tools/download.sh
blob: 1a312ef556c1e6e6a6d64025a6ccf954e213b39e (plain)
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
#!/bin/sh


set -euf


# absolute paths
script="$(realpath $0)"
tools="$(dirname "${script}")"
src="$(dirname "${tools}")"
doc="${src}/doc"

documents='
ft232r.pdf	https://www.ftdichip.com/old2020/Support/Documents/DataSheets/ICs/DS_FT232R.pdf	9dc583a87fdd8cc20f538197bb4cf807
'


mkdir -pv "$doc"

echo "$documents" | while read line
do
	if [ "$line" == '' ]
	then
		continue
	fi

	name="$(echo "$line" | cut -d$'\t' -f1)"
	url="$(echo "$line" | cut -d$'\t' -f2)"
	checksum="$(echo "$line" | cut -d$'\t' -f3)"
	path="${doc}/${name}"

	if [ ! -f "$path" ]
	then
		curl "$url" > "$path"
	fi

	if [ "${checksum}  ${path}" == "$(md5sum "$path")" ]
	then
		echo "OK     ${name}"
	else
		echo "NOT OK ${name}"
	fi
done

echo "External documentation saved in ${doc}"