qq2clone/gen_all.bash

48 lines
1.1 KiB
Bash
Raw Normal View History

2021-07-14 05:41:59 +00:00
#!/bin/bash
2021-07-14 22:08:38 +00:00
# Generate all files that need to be generated
2021-07-14 05:41:59 +00:00
declare -a arc_files=( qq2clone lv_api_do qq2clone.1
2021-07-15 01:47:47 +00:00
qq2clone_completion.bash )
declare -a req_files=( "${arc_files[@]}" inst_fragment.bash "lv_api_do.c"
man.pandoc )
2021-07-14 22:08:38 +00:00
# Check for required files
2021-07-14 05:41:59 +00:00
has_req=1
for file in "${req_files[@]}"; do
if [[ ! -e "$file" ]]; then
2021-07-14 22:08:38 +00:00
[[ "$file" == "lv_api_do" ]] && continue
has_req=0
echo "Current working directory missing file '$file'"
fi
done
((has_req)) || exit 1
2021-07-14 05:41:59 +00:00
2021-07-14 22:08:38 +00:00
# Compile lv_api_do
echo "Compiling lv_api_do"
gcc lv_api_do.c -o lv_api_do -lvirt
# Generate installer
echo "Generating installer script"
2021-07-14 05:41:59 +00:00
{
echo "#!/bin/bash"
2021-07-14 05:54:05 +00:00
echo
2021-07-14 05:41:59 +00:00
echo "# This script generated automatically by gen_installer.bash"
echo
echo "archive='"
tar -cz "${arc_files[@]}" | base64
2021-07-14 05:54:05 +00:00
echo "'"
echo
cat inst_fragment.bash
2021-07-14 05:41:59 +00:00
} > qq2clone_installer.bash
chmod +x qq2clone_installer.bash
# Generate manual from pandoc source in two formats
2021-07-14 22:08:38 +00:00
echo "Generating manual"
pandoc -s -f markdown -t markdown_strict -o man.md man.pandoc
pandoc -s -f markdown -t man -o qq2clone.1 man.pandoc