Work around qmake limitations in Info.plist generation.

This commit is contained in:
sawinglogz 2020-01-17 16:41:02 -05:00
parent 62b5ba3a60
commit b5d5be6475

View File

@ -12,6 +12,12 @@ if [[ ! -f ${PLIST} ]]; then
exit 128 exit 128
fi fi
# We have to do this here because qmake truncates the version and because its template
# doesn't rebuild Info.plist when VERSION changes.
VERSION=`awk '/#define VERSION / { gsub(/"/, "", $3); print $3 }' ${SRC}/VERSION` || exit
/usr/libexec/PlistBuddy -c "Set CFBundleGetInfoString ${VERSION}" ${PLIST}
/usr/libexec/PlistBuddy -c "Set CFBundleShortVersionString ${VERSION}" ${PLIST}
GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h` GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h`
if [[ ${GIT_REVISION} != "" ]]; then if [[ ${GIT_REVISION} != "" ]]; then
/usr/libexec/PlistBuddy -c "Add GitRevision string ${GIT_REVISION}" ${PLIST} 2>/dev/null /usr/libexec/PlistBuddy -c "Add GitRevision string ${GIT_REVISION}" ${PLIST} 2>/dev/null