mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Work around qmake limitations in Info.plist generation.
This commit is contained in:
parent
62b5ba3a60
commit
b5d5be6475
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user