Make it possible to generate 29tsoc ebooks
[project-aon.git] / common / scripts / copy-svg.sh
1 #!/usr/bin/env bash
2 #
3 # Copy SVG files for the specified book(s) to a directory structure that's
4 # ready to be pushed to the public website.
5 #
6 # Examples:
7 #
8 #     copy-svg.sh 05sots
9 #
10 #     list-bookcodes-by-series.sh gs | xargs copy-svg.sh
11
12 if [ ! -d "$AONDIR" ]; then
13     >&2 echo "Please set the AONDIR environment variable"
14     exit 1
15 fi
16 CURR_DIR=`pwd`
17
18 if [ "$AONDIR" -ef "$CURR_DIR" ]; then
19     >&2 echo "Current directory is the same as AONDIR: giving up"
20     exit 1
21 fi
22
23 for book in $@
24 do
25     row=( $($AONDIR/common/scripts/list-book-info.sh $book) )
26
27     lang=${row[1]}
28     series=${row[2]}
29
30     source_dir="$AONDIR/$lang/svg/$series"
31     output_dir="$CURR_DIR/$lang/svg/$series"
32     mkdir -p "$output_dir"
33     cp -av "$source_dir/$book.svgz" "$output_dir"
34 done