diff options
Diffstat (limited to 'scripts/build-presets.sh')
-rwxr-xr-x | scripts/build-presets.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/scripts/build-presets.sh b/scripts/build-presets.sh new file mode 100755 index 000000000..da729dd5b --- /dev/null +++ b/scripts/build-presets.sh @@ -0,0 +1,26 @@ +#!/bin/bash +# usage: build-presets + +SELF="${BASH_SOURCE[0]}" +BASE_DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd -P) +BASE_DIR="${BASE_DIR:-$(pwd)}" +LIBHB_DIR="${BASE_DIR}/../libhb" + +if ! cd "${LIBHB_DIR}"; then + exit 1 +fi + +JSON_TEMP=$(mktemp hb_builtin_presets.json.XXX) +C_TEMP=$(mktemp hb_builtin_presets.h.XXX) +if [[ "${JSON_TEMP:-}" == "" ]] || [[ "${C_TEMP:-}" == "" ]]; then + echo "unable to create temporary file" >2 + exit 1 +fi +"${BASE_DIR}/create_resources.py" libhb_presets.list "${JSON_TEMP}" \ +&& echo 'const char hb_builtin_presets_json[] =' > "${C_TEMP}" \ +&& "${BASE_DIR}/quotestring.py" "${JSON_TEMP}" >> "${C_TEMP}" \ +&& echo ';' >> "${C_TEMP}" \ +&& cp "${C_TEMP}" builtin_presets.h +rm "${JSON_TEMP}" "${C_TEMP}" + +exit 0 |