27 lines
956 B
Bash
Executable File
27 lines
956 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Set the directories to output to
|
|
if [ -z "${EXPORT_DIR}" ]; then
|
|
EXPORT_DIR=build
|
|
fi
|
|
if [ -z "${TMP_DIR}" ]; then
|
|
TMP_DIR=tmp
|
|
fi
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Error: Missing tag to stamp"
|
|
exit 1
|
|
fi
|
|
|
|
# Stamp the provided version number on the screenshot
|
|
convert "${EXPORT_DIR}/screenshot.png" \
|
|
-gravity southeast -fill "#b9b5c5" -font "DejaVu-Serif" -annotate +0+1 "${1}"\
|
|
-gravity southeast -fill "#696b7f" -font "DejaVu-Serif" -annotate -1-0 "${1}"\
|
|
-gravity southeast -fill "#b9b5c5" -font "DejaVu-Serif" -annotate 0 "${1}"\
|
|
"${EXPORT_DIR}/screenshot.png" || { echo "Failed to stamp versioning info onto ${EXPORT_DIR}/screenshot.png"; exit 1; }
|
|
|
|
# Generate an escaped long description for .cdb.json
|
|
export SHORT_DESCRIPTION=`awk -f "short_description.awk" "README.md"`
|
|
export LONG_DESCRIPTION=`awk -f "long_description.awk" "README.md"`
|
|
awk -f "cdb_json.awk" ".cdb.json.template" > "${EXPORT_DIR}/.cdb.json"
|